1
0
cuberite-2a/MCServer/Plugins/SelfTest/plugin.lua
Tycho 62c18868b2 Added Self Test Plugin
At the moment It just shuts the server down again
2014-02-05 09:57:53 -08:00

21 lines
366 B
Lua

function Initialize(Plugin)
Plugin:SetName("SelfTest")
Plugin:SetVersion(1)
cPluginManager.AddHook(cPluginManager.HOOK_WORLD_STARTED, OnWorldStarted)
LOG("Initialized " .. Plugin:GetName() .. " v." .. Plugin:GetVersion())
return true
end
function OnWorldStarted(World)
LOG("Stopping")
cRoot:Get():QueueExecuteConsoleCommand("stop");
return false
end