forgottenserver/data/creaturescripts/scripts/logout.lua
2017-12-17 21:03:57 +01:00

7 lines
156 B
Lua

function onLogout(player)
local playerId = player:getId()
if nextUseStaminaTime[playerId] then
nextUseStaminaTime[playerId] = nil
end
return true
end