Map::setNode(): Not allowing to place CONTENT_IGNORE while trying to replace "air" at (-66,25,102) (block (-5,1,6))
can somebody explain what this mean's ?
i try to create a tree with a experimental function,
so the trunk is placed without error...
minetest.env:add_node({x=pos.x,y=pos.y,z=pos.z},{type="node",name="default:fence_wood"})
minetest.env:add_node({x=pos.x,y=pos.y+1,z=pos.z},{type="node",name="default:fence_wood"})
minetest.env:add_node({x=pos.x,y=pos.y+2,z=pos.z},{type="node",name="default:fence_wood"})
minetest.env:add_node({x=pos.x,y=pos.y+3,z=pos.z},{type="node",name="default:fence_wood"})
minetest.env:add_node({x=pos.x+1,y=pos.y+3,z=pos.z},{type="node",name="deko:deko_birch_leaves"})
the first mistake comes where the leaves should be set, whats wrong ?