Fix issue where GetTime was used instead of time()

This commit is contained in:
2024-03-30 19:24:37 +01:00
parent 169a1c580d
commit ff03b47444
5 changed files with 7 additions and 7 deletions

View File

@@ -1,4 +1,4 @@
-- TICKER_500
function(e)
return math.floor(GetTime() - aura_env.AfkSince), math.floor(aura_env.KickTime - aura_env.AfkSince), 1
return math.floor(time() - aura_env.AfkSince), math.floor(aura_env.KickTime - aura_env.AfkSince), 1
end