mirror of
https://github.com/otland/forgottenserver
synced 2026-08-15 16:32:07 -04:00
7 lines
156 B
Lua
7 lines
156 B
Lua
function onLogout(player)
|
|
local playerId = player:getId()
|
|
if nextUseStaminaTime[playerId] then
|
|
nextUseStaminaTime[playerId] = nil
|
|
end
|
|
return true
|
|
end
|