summaryrefslogtreecommitdiffstats
path: root/MCServer/Plugins/SelfTest/plugin.lua
diff options
context:
space:
mode:
Diffstat (limited to 'MCServer/Plugins/SelfTest/plugin.lua')
-rw-r--r--MCServer/Plugins/SelfTest/plugin.lua20
1 files changed, 0 insertions, 20 deletions
diff --git a/MCServer/Plugins/SelfTest/plugin.lua b/MCServer/Plugins/SelfTest/plugin.lua
deleted file mode 100644
index 3822b9ba1..000000000
--- a/MCServer/Plugins/SelfTest/plugin.lua
+++ /dev/null
@@ -1,20 +0,0 @@
-
-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