summaryrefslogtreecommitdiff
path: root/main.py
diff options
context:
space:
mode:
authorNEMESIS13cz <seke94@seznam.cz>2015-09-06 01:40:13 +0200
committerNEMESIS13cz <seke94@seznam.cz>2015-09-06 01:40:13 +0200
commit579b906b2a427621a73d478d8e187d30c8e80b4f (patch)
tree0a7116cb741b1ab174fbaf9e55d3562028edd756 /main.py
parent823dd373415444a50bd784ea2cc1fc9167370c23 (diff)
Added vanishfix.py into modules + call its enabled method
Diffstat (limited to 'main.py')
-rw-r--r--main.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/main.py b/main.py
index 0566e3a..dca8836 100644
--- a/main.py
+++ b/main.py
@@ -19,6 +19,7 @@ except:
@hook.enable
def on_enable():
+ shared["modules"]["vanishfix"].enabled()
info("RedstonerUtils enabled!")
@@ -85,7 +86,9 @@ shared["load_modules"] = [
# Script helper plugin
"scriptutils",
# Per-player notes
- "tag"
+ "tag",
+ # vanish toggle module - temporary fix
+ "vanishfix"
]
shared["modules"] = {}
for module in shared["load_modules"]: