You talk about cleaning up a chunk but don't give an explanation on how to do it. are they only interactible wr removable in creative or can you mine them otherwise ?
The boulders are breakable with pickaxes, like other types of stone. If you want to bulk remove them from an entire area, you could use worldedit to first select an area and then run //lt if string.find(minetest.get_node(pos).name, "beautifulboulders:stone") then minetest.set_node(pos, {name = "air"}) end to replace every boulder with air.
You talk about cleaning up a chunk but don't give an explanation on how to do it. are they only interactible wr removable in creative or can you mine them otherwise ?
The boulders are breakable with pickaxes, like other types of stone. If you want to bulk remove them from an entire area, you could use worldedit to first select an area and then run
//lt if string.find(minetest.get_node(pos).name, "beautifulboulders:stone") then minetest.set_node(pos, {name = "air"}) end
to replace every boulder with air.Thank you for the answer :)