summaryrefslogtreecommitdiffstats
path: root/MCServer/Plugins/Core/reload.lua
blob: e2b338ba1922e27effd4970bf302263be90a3fc7 (plain) (blame)
1
2
3
4
5
6
function HandleReloadCommand( Split, Player )
	Server = cRoot:Get():GetServer()
	Server:SendMessage( cChatColor.Green .. "Reloading all plugins." )
	cRoot:Get():GetPluginManager():ReloadPlugins()
	return true
end