diff options
Diffstat (limited to '')
-rw-r--r-- | MCServer/Plugins/Debuggers/Debuggers.lua | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/MCServer/Plugins/Debuggers/Debuggers.lua b/MCServer/Plugins/Debuggers/Debuggers.lua index b090ea55c..ab3397f74 100644 --- a/MCServer/Plugins/Debuggers/Debuggers.lua +++ b/MCServer/Plugins/Debuggers/Debuggers.lua @@ -1,9 +1,14 @@ - -- Global variables PLUGIN = {}; -- Reference to own plugin object + g_DropSpensersToActivate = {}; -- A list of dispensers and droppers (as {World, X, Y Z} quadruplets) that are to be activated every tick g_HungerReportTick = 10; + + + + + function Initialize(Plugin) PLUGIN = Plugin @@ -41,6 +46,11 @@ function Initialize(Plugin) return true end; + + + + + function TestBlockAreas() LOG("Testing block areas..."); |