Fix backwards emerging timeout check

master
Aaron Suen 2021-03-23 15:43:30 -04:00
parent e83db42fa7
commit b9e80905ac
1 changed files with 1 additions and 1 deletions

View File

@ -97,7 +97,7 @@ if limitsoft >= 0 and limithard > 0 then
then lobby = lobby + 1 end
end
for _, t in pairs(emerging) do
if t + 60 < now() then lobby = lobby + 1 end
if now() < t + 60 then lobby = lobby + 1 end
end
if lobby > math_random(limitsoft, limithard) then return limitmsg end
emerging[name] = now()