Removed a number of objects from the creative inventory (like parts of doors,

etc).  Now it should only have stuff from this which is actually useful.
This commit is contained in:
Vanessa Ezekowitz
2012-09-01 12:45:13 -04:00
parent d0cf35e434
commit 23f0921b92
4 changed files with 29 additions and 29 deletions

View File

@ -569,7 +569,7 @@ minetest.register_node('homedecor:dresser_mahogany_left_side', {
paramtype = "light",
paramtype2 = "facedir",
walkable = true,
groups = { snappy = 3 },
groups = { snappy = 3, not_in_creative_inventory=1 },
sounds = default.node_sound_leaves_defaults(),
})
@ -585,7 +585,7 @@ minetest.register_node('homedecor:dresser_mahogany_right_side', {
paramtype = "light",
paramtype2 = "facedir",
walkable = true,
groups = { snappy = 3 },
groups = { snappy = 3, not_in_creative_inventory=1 },
sounds = default.node_sound_leaves_defaults(),
})
@ -601,7 +601,7 @@ minetest.register_node('homedecor:dresser_oak_left_side', {
paramtype = "light",
paramtype2 = "facedir",
walkable = true,
groups = { snappy = 3 },
groups = { snappy = 3, not_in_creative_inventory=1 },
sounds = default.node_sound_leaves_defaults(),
})
@ -617,7 +617,7 @@ minetest.register_node('homedecor:dresser_oak_right_side', {
paramtype = "light",
paramtype2 = "facedir",
walkable = true,
groups = { snappy = 3 },
groups = { snappy = 3, not_in_creative_inventory=1 },
sounds = default.node_sound_leaves_defaults(),
})