pvpgn-server/lua/handle_server.lua
HarpyWar f4fff62f82 * add server_handle_rehash to Lua
* function in Lua to save GHost state when rehash
2014-08-02 19:26:01 +04:00

26 lines
No EOL
429 B
Lua

--[[
Copyright (C) 2014 HarpyWar (harpywar@gmail.com)
This file is a part of the PvPGN Project http://pvpgn.pro
Licensed under the same terms as Lua itself.
]]--
-- Loop each second
function handle_server_mainloop()
-- Tick all timers
for t in pairs(__timers) do
__timers[t]:tick()
end
-- DEBUG(os.time())
end
-- When restart Lua VM
function handle_server_rehash()
if (config.ghost) then
gh_unload()
end
end