mirror of
https://github.com/ErikasKontenis/SabrehavenServer.git
synced 2025-04-30 01:29:21 +02:00
8 lines
156 B
Lua
8 lines
156 B
Lua
function onLogout(player)
|
|
local playerId = player:getId()
|
|
if nextUseStaminaTime[playerId] then
|
|
nextUseStaminaTime[playerId] = nil
|
|
end
|
|
return true
|
|
end
|