Francisco 2021-01-06 21:58:32 +00:00
parent 37a8f0774c
commit be9512aeaf
1 changed files with 5 additions and 3 deletions

View File

@ -57,9 +57,11 @@ witches.witch_types = {
local pos = self.object:get_pos()
if pos then
pos.y = pos.y+1
local pos1 = minetest.find_node_near(pos, 3, "air")
minetest.set_node(pos1, {name = "fireflies:firefly"})
--print("setting firefly"..minetest.pos_to_string(pos1))
local pos1 = minetest.find_node_near(pos, 3, "air")
if pos1 then
minetest.set_node(pos1, {name = "fireflies:firefly"})
--print("setting firefly"..minetest.pos_to_string(pos1))
end
end
end
end,