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