summaryrefslogtreecommitdiffstats
path: root/MCServer/Plugins/Core/stop.lua
diff options
context:
space:
mode:
Diffstat (limited to 'MCServer/Plugins/Core/stop.lua')
-rw-r--r--MCServer/Plugins/Core/stop.lua4
1 files changed, 3 insertions, 1 deletions
diff --git a/MCServer/Plugins/Core/stop.lua b/MCServer/Plugins/Core/stop.lua
index 0a06fc7d3..4b4cca3b6 100644
--- a/MCServer/Plugins/Core/stop.lua
+++ b/MCServer/Plugins/Core/stop.lua
@@ -1,6 +1,8 @@
function HandleStopCommand( Split, Player )
Server = cRoot:Get():GetServer()
+ PluginManager = cRoot:Get():GetPluginManager()
Server:SendMessage( cChatColor.Green .. "Stopping the server..." )
- cRoot:Get():ServerCommand("stop")
+ PluginManager:ExecuteConsoleCommand("stop")
+ --cRoot:Get():ServerCommand("stop")
return true
end \ No newline at end of file