Added reason to afk kick

This commit is contained in:
Cooldude2606
2018-03-17 19:15:54 +00:00
parent 5b3ff2300e
commit df06585c26

View File

@@ -16,7 +16,7 @@ Event.register(-1,function(event)
for _,player in pairs(game.connected_players) do
local afk = Ranking.get_rank(player).max_afk_time or false
if afk then
if player.afk_time > afk*3600 then game.kick_player(player) end
if player.afk_time > afk*3600 then game.kick_player(player,'AFK For Too Long ('..afk*3600..' Minutes)') end
end
end
end):on_event('error',function(self,err)