aboutsummaryrefslogtreecommitdiffstats
path: root/util/timer.lua
diff options
context:
space:
mode:
Diffstat (limited to 'util/timer.lua')
-rw-r--r--util/timer.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/timer.lua b/util/timer.lua
index 819016de..c0c7f25a 100644
--- a/util/timer.lua
+++ b/util/timer.lua
@@ -42,7 +42,7 @@ ns_addtimer(function()
local t, func = d[1], d[2];
if t <= current_time then
data[i] = nil;
- local r = func();
+ local r = func(current_time);
if type(r) == "number" then _add_task(r, func); end
end
end