core.after: Improve assertion message (#8388)

master
ANAND 2019-03-17 14:55:47 +05:30 committed by SmallJoker
parent 7f1c2b8a00
commit d50feb89de
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ end)
function core.after(after, func, ...)
assert(tonumber(after) and type(func) == "function",
"Invalid core.after invocation")
"Invalid minetest.after invocation")
jobs[#jobs + 1] = {
func = func,
expire = time + after,