Skip to content

Commit

Permalink
fix: i'm a dumbass
Browse files Browse the repository at this point in the history
  • Loading branch information
TonybynMp4 committed May 2, 2024
1 parent a7de21a commit cb96e13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/main.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit cb96e13

Please sign in to comment.