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