1
0
Fork 0
mirror of https://github.com/Reuh/ubiquitousse.git synced 2025-10-27 17:19:31 +00:00

Fix nil ref

This commit is contained in:
Reuh 2017-04-07 13:37:08 +02:00
parent d24ffed189
commit 5c90076f22

View file

@ -69,7 +69,7 @@ local function newTimerRegistry()
local d = delayed local d = delayed
for func, t in pairs(d) do for func, t in pairs(d) do
if all(t.initWhen, true) then if t and all(t.initWhen, true) then
t.initWhen = {} t.initWhen = {}
local co = t.coroutine local co = t.coroutine
t.after = t.after - dt t.after = t.after - dt