diff options
author | DonBatman <don@serfdon.com> | 2015-11-16 20:32:01 -0800 |
---|---|---|
committer | DonBatman <don@serfdon.com> | 2015-11-16 20:32:01 -0800 |
commit | 9fbf8a87f4ff9f96215de41c08db1fc0634b252e (patch) | |
tree | 47b69a499fb1ed9165400e89228703110a249e6d /mario/pipes.lua | |
parent | ac479f81aa9440c9240e16501e5bfcb74a4ee271 (diff) |
made blocks not pointable
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, |