summaryrefslogtreecommitdiff
path: root/mario/pipes.lua
diff options
context:
space:
mode:
authorDonBatman <serfdon@gmail.com>2015-11-12 16:59:36 -0800
committerDonBatman <serfdon@gmail.com>2015-11-12 16:59:36 -0800
commitac479f81aa9440c9240e16501e5bfcb74a4ee271 (patch)
treec52690c1b8eedd39c7e605643e06914899113f49 /mario/pipes.lua
parent881e4c1e00e66d54bcf318dd6b4b43d80580fa55 (diff)
removed items from creative inventory
Diffstat (limited to 'mario/pipes.lua')
-rw-r--r--mario/pipes.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/mario/pipes.lua b/mario/pipes.lua
index 3cfb04f..ab42d28 100644
--- a/mario/pipes.lua
+++ b/mario/pipes.lua
@@ -23,7 +23,7 @@ minetest.register_node("mario:pipe",{
drawtype = "nodebox",
paramtype = "light",
paramtype2 = "facedir",
- groups = {cracky = 3},
+ groups = {cracky = 1,not_in_creative_inventory=1},
node_box = pipe_box,
on_place = minetest.rotate_node,
@@ -42,7 +42,7 @@ minetest.register_node("mario:pipe_elbow",{
drawtype = "nodebox",
paramtype = "light",
paramtype2 = "facedir",
- groups = {cracky = 3},
+ groups = {cracky = 1,not_in_creative_inventory=1},
node_box = pipe_elbow_box,
on_place = minetest.rotate_node,
})
@@ -60,7 +60,7 @@ minetest.register_node("mario:pipe_end",{
drawtype = "nodebox",
paramtype = "light",
paramtype2 = "facedir",
- groups = {cracky = 3},
+ groups = {cracky = 1,not_in_creative_inventory=1},
node_box = pipe_end_box,
on_place = minetest.rotate_node,
})