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:
parent
d24ffed189
commit
5c90076f22
1 changed files with 1 additions and 1 deletions
2
time.lua
2
time.lua
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue