[solved] Placing nodes in air (and not get content_ignore warnings)
How do i avoid placing nodes in unloaded chunks?
FOSS gamedev and creative worlds
https://forums.minetest.org/
function place_node_safe(pos,node)
if minetest.env:get_node(pos).name == "ignore" then
return false
else
minetest.env:add_node(pos, node)
return true
end
end