forked from VoxeLibre/VoxeLibre
Fix possible crash in monster spawner code
This commit is contained in:
parent
9f5a310aae
commit
71d7ed09c8
|
@ -106,8 +106,10 @@ minetest.register_node("mcl_monster_spawner:spawner", {
|
||||||
local meta = minetest.get_meta(pos)
|
local meta = minetest.get_meta(pos)
|
||||||
if meta:get_int("active") == 1 then
|
if meta:get_int("active") == 1 then
|
||||||
local obj = find_doll(pos)
|
local obj = find_doll(pos)
|
||||||
|
if obj then
|
||||||
obj:remove()
|
obj:remove()
|
||||||
end
|
end
|
||||||
|
end
|
||||||
end,
|
end,
|
||||||
|
|
||||||
on_right_click = function(pos, placer)
|
on_right_click = function(pos, placer)
|
||||||
|
|
Loading…
Reference in New Issue