summaryrefslogtreecommitdiffstats
path: root/MCServer/Plugins/Core/saveall.lua
blob: 1dd12335b3b84770d980e924ac754af42509c8ce (plain) (blame)
1
2
3
4
5
function HandleSaveAllCommand( Split, Player )
	cRoot:Get():SaveAllChunks();
	Player:SendMessage(cChatColor.Green .. "All the worlds are saved")
	return true;
end