diff options
Diffstat (limited to 'mario/pipes.lua')
-rw-r--r-- | mario/pipes.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mario/pipes.lua b/mario/pipes.lua index ab42d28..26e2a61 100644 --- a/mario/pipes.lua +++ b/mario/pipes.lua @@ -23,6 +23,7 @@ minetest.register_node("mario:pipe",{ drawtype = "nodebox", paramtype = "light", paramtype2 = "facedir", + pointable = false, groups = {cracky = 1,not_in_creative_inventory=1}, node_box = pipe_box, on_place = minetest.rotate_node, @@ -42,6 +43,7 @@ minetest.register_node("mario:pipe_elbow",{ drawtype = "nodebox", paramtype = "light", paramtype2 = "facedir", + pointable = false, groups = {cracky = 1,not_in_creative_inventory=1}, node_box = pipe_elbow_box, on_place = minetest.rotate_node, @@ -60,6 +62,7 @@ minetest.register_node("mario:pipe_end",{ drawtype = "nodebox", paramtype = "light", paramtype2 = "facedir", + pointable = false, groups = {cracky = 1,not_in_creative_inventory=1}, node_box = pipe_end_box, on_place = minetest.rotate_node, |