From 5c76bdeed8e2598d595114ede8aba7c697be38fd Mon Sep 17 00:00:00 2001 From: Lorenzo Cogotti Date: Fri, 26 Jan 2024 16:24:30 +0100 Subject: [PATCH] [timer] Minor style fix --- timer.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/timer.lua b/timer.lua index 6ea3f7b..ed34ecc 100644 --- a/timer.lua +++ b/timer.lua @@ -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_,