Removed @hook.enable decs from modules, added them to the on_enable() method of main.py.
This commit is contained in:
@@ -257,7 +257,6 @@ def on_player_command_preprocess(event):
|
||||
event.setCancelled(True)
|
||||
|
||||
|
||||
@hook.enable
|
||||
def replace_ess_commands():
|
||||
|
||||
try:
|
||||
|
||||
7
main.py
7
main.py
@@ -19,12 +19,17 @@ except:
|
||||
|
||||
@hook.enable
|
||||
def on_enable():
|
||||
if "blockplacemods" in shared["modules"]:
|
||||
shared["modules"]["blockplacemods"].schedule_torch_breaker()
|
||||
if "imbusy" in shared["modules"]:
|
||||
shared["modules"]["imbusy"].replace_ess_commands()
|
||||
info("RedstonerUtils enabled!")
|
||||
|
||||
|
||||
@hook.disable
|
||||
def on_disable():
|
||||
shared["modules"]["reports"].stop_reporting()
|
||||
if "reports" in shared["modules"]:
|
||||
shared["modules"]["reports"].stop_reporting()
|
||||
info("RedstonerUtils disabled!")
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user