From cb96e13610c3a467199b7f2c59c4cd934d26ed90 Mon Sep 17 00:00:00 2001 From: Tony <97451137+TonybynMp4@users.noreply.github.com> Date: Thu, 2 May 2024 04:13:56 +0200 Subject: [PATCH] fix: i'm a dumbass --- server/main.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/main.lua b/server/main.lua index 2f9cba7..3a6874b 100644 --- a/server/main.lua +++ b/server/main.lua @@ -80,7 +80,7 @@ end) lib.callback.register('qbx_dispatch:server:GetLastCall', function(source) for i = #calls, 1, -1 do -- Stop at the first call older than 30 seconds - if os.time() - calls[i].time/1000 < 30000 then + if os.time() - calls[i].time/1000 > 30000 then return false end -- Only return the call if you didn't ignore it