core.after: Improve assertion message (#8388)
parent
7f1c2b8a00
commit
d50feb89de
|
@ -23,7 +23,7 @@ end)
|
||||||
|
|
||||||
function core.after(after, func, ...)
|
function core.after(after, func, ...)
|
||||||
assert(tonumber(after) and type(func) == "function",
|
assert(tonumber(after) and type(func) == "function",
|
||||||
"Invalid core.after invocation")
|
"Invalid minetest.after invocation")
|
||||||
jobs[#jobs + 1] = {
|
jobs[#jobs + 1] = {
|
||||||
func = func,
|
func = func,
|
||||||
expire = time + after,
|
expire = time + after,
|
||||||
|
|
Loading…
Reference in New Issue