summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2015-03-01 12:11:51 +0100
committerMattes D <github@xoft.cz>2015-03-01 12:12:10 +0100
commita22a81ef4ba9bb1d195a5b820a5f708f3b1030f0 (patch)
tree4338d2f520498059eb35fe56c0e142e4f01232b2
parentFixed raspi easyinstall. (diff)
downloadcuberite-a22a81ef4ba9bb1d195a5b820a5f708f3b1030f0.tar
cuberite-a22a81ef4ba9bb1d195a5b820a5f708f3b1030f0.tar.gz
cuberite-a22a81ef4ba9bb1d195a5b820a5f708f3b1030f0.tar.bz2
cuberite-a22a81ef4ba9bb1d195a5b820a5f708f3b1030f0.tar.lz
cuberite-a22a81ef4ba9bb1d195a5b820a5f708f3b1030f0.tar.xz
cuberite-a22a81ef4ba9bb1d195a5b820a5f708f3b1030f0.tar.zst
cuberite-a22a81ef4ba9bb1d195a5b820a5f708f3b1030f0.zip
-rw-r--r--MCServer/Plugins/Debuggers/Debuggers.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/MCServer/Plugins/Debuggers/Debuggers.lua b/MCServer/Plugins/Debuggers/Debuggers.lua
index a28ffa552..c8069a411 100644
--- a/MCServer/Plugins/Debuggers/Debuggers.lua
+++ b/MCServer/Plugins/Debuggers/Debuggers.lua
@@ -25,13 +25,14 @@ function Initialize(Plugin)
PM:AddHook(cPluginManager.HOOK_PLAYER_RIGHT_CLICKING_ENTITY, OnPlayerRightClickingEntity);
PM:AddHook(cPluginManager.HOOK_WORLD_TICK, OnWorldTick);
PM:AddHook(cPluginManager.HOOK_PLUGINS_LOADED, OnPluginsLoaded);
- PM:AddHook(cPluginManager.HOOK_PLUGIN_MESSAGE, OnPluginMessage);
PM:AddHook(cPluginManager.HOOK_PLAYER_JOINED, OnPlayerJoined);
PM:AddHook(cPluginManager.HOOK_PROJECTILE_HIT_BLOCK, OnProjectileHitBlock);
PM:AddHook(cPluginManager.HOOK_CHUNK_UNLOADING, OnChunkUnloading);
PM:AddHook(cPluginManager.HOOK_WORLD_STARTED, OnWorldStarted);
PM:AddHook(cPluginManager.HOOK_PROJECTILE_HIT_BLOCK, OnProjectileHitBlock);
+ -- _X: Disabled WECUI manipulation:
+ -- PM:AddHook(cPluginManager.HOOK_PLUGIN_MESSAGE, OnPluginMessage);
-- _X: Disabled so that the normal operation doesn't interfere with anything
-- PM:AddHook(cPluginManager.HOOK_CHUNK_GENERATED, OnChunkGenerated);