mirror of
https://github.com/PHIDIAS0303/ExpCluster.git
synced 2025-12-31 13:01:39 +09:00
Fixed AFK kick message
it doesnt need to print (max_afk_time*3600) just the time (max_afk_time)
This commit is contained in:
@@ -16,7 +16,7 @@ Event.register(-1,function(event)
|
|||||||
for _,player in pairs(game.connected_players) do
|
for _,player in pairs(game.connected_players) do
|
||||||
local afk = Ranking.get_rank(player).max_afk_time or false
|
local afk = Ranking.get_rank(player).max_afk_time or false
|
||||||
if afk then
|
if afk then
|
||||||
if player.afk_time > afk*3600 then game.kick_player(player,'AFK For Too Long ('..tostring(afk*3600)..' Minutes)') end
|
if player.afk_time > afk*3600 then game.kick_player(player,'AFK For Too Long ('..tostring(afk)..' Minutes)') end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end):on_event('error',function(self,err)
|
end):on_event('error',function(self,err)
|
||||||
|
|||||||
Reference in New Issue
Block a user