[timer] Minor style fix

This commit is contained in:
Lorenzo Cogotti 2024-01-26 16:24:30 +01:00
parent 41954aff63
commit 5c76bdeed8
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ function Timer:after(delay, func)
end
function Timer:every(delay, after, count)
local count = count or math.huge -- exploit below: math.huge - 1 = math.huge
count = count or math.huge -- exploit below: math.huge - 1 = math.huge
local handle = {
time = 0,
during = _nothing_,