blob: 527f664d9e8858c33fd610739fa9f246278dad76 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
local path = minetest.get_modpath(minetest.get_current_modname()) .. "/src"
dofile(path .. "/init.lua")(path, true)
minetest.register_globalstep(function(dtime)
lua_async.step(dtime)
end)
function lua_async.mt_validate_objs(...)
for _, ref in ipairs {...} do
if not ref:is_player() and not ref:get_luaentity() then
lua_async.kill_thread()
end
end
end
|