From e95c6c039eb09cd13f3780129cd4300cfef02aea Mon Sep 17 00:00:00 2001 From: Cooldude2606 Date: Sat, 21 Jul 2018 17:06:34 +0100 Subject: [PATCH] Forgot to maintain tick formating --- ExpCore/sync.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ExpCore/sync.lua b/ExpCore/sync.lua index 479d6e7c..3d1085b2 100644 --- a/ExpCore/sync.lua +++ b/ExpCore/sync.lua @@ -118,7 +118,7 @@ function Sync.count_afk_times(time) local time = time or 7200 local rtn = {} for _,player in pairs(game.connected_players) do - if player.afk_time > time then rtn[player.name] = player.afk_time end + if player.afk_time > time then rtn[player.name] = Sync.tick_format(player.afk_time) end end return rtn end