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.
master
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

@ -161,7 +161,7 @@ minetest.register_node('homedecor:exterior_door_fancy_a_c', {
paramtype = "light",
paramtype2 = "wallmounted",
walkable = true,
groups = { choppy = 2, dig_immediate=2 },
groups = { choppy = 2, dig_immediate=2, not_in_creative_inventory=1},
selection_box = { type = "wallmounted" },
drop = 'homedecor:exterior_door_fancy',
})
@ -175,7 +175,7 @@ minetest.register_node('homedecor:exterior_door_fancy_b_c', {
paramtype = "light",
paramtype2 = "wallmounted",
walkable = true,
groups = { choppy = 2, dig_immediate=2 },
groups = { choppy = 2, dig_immediate=2, not_in_creative_inventory=1 },
selection_box = { type = "wallmounted" },
drop = 'homedecor:exterior_door_fancy',
})
@ -189,7 +189,7 @@ minetest.register_node('homedecor:exterior_door_fancy_a_o', {
paramtype = "light",
paramtype2 = "wallmounted",
walkable = false,
groups = { choppy = 2, dig_immediate=2 },
groups = { choppy = 2, dig_immediate=2, not_in_creative_inventory=1 },
selection_box = { type = "wallmounted", },
drop = 'homedecor:exterior_door_fancy',
})
@ -203,7 +203,7 @@ minetest.register_node('homedecor:exterior_door_fancy_b_o', {
paramtype = "light",
paramtype2 = 'wallmounted',
walkable = false,
groups = { choppy = 2, dig_immediate=2 },
groups = { choppy = 2, dig_immediate=2, not_in_creative_inventory=1 },
selection_box = { type = "wallmounted", },
drop = 'homedecor:exterior_door_fancy',
})
@ -337,7 +337,7 @@ minetest.register_node('homedecor:exterior_door_fancy_a_c_right', {
paramtype = "light",
paramtype2 = "wallmounted",
walkable = true,
groups = { choppy = 2, dig_immediate=2 },
groups = { choppy = 2, dig_immediate=2, not_in_creative_inventory=1 },
selection_box = { type = "wallmounted" },
drop = 'homedecor:exterior_door_fancy_right',
})
@ -351,7 +351,7 @@ minetest.register_node('homedecor:exterior_door_fancy_b_c_right', {
paramtype = "light",
paramtype2 = "wallmounted",
walkable = true,
groups = { choppy = 2, dig_immediate=2 },
groups = { choppy = 2, dig_immediate=2, not_in_creative_inventory=1 },
selection_box = { type = "wallmounted" },
drop = 'homedecor:exterior_door_fancy_right',
})
@ -365,7 +365,7 @@ minetest.register_node('homedecor:exterior_door_fancy_a_o_right', {
paramtype = "light",
paramtype2 = "wallmounted",
walkable = false,
groups = { choppy = 2, dig_immediate=2 },
groups = { choppy = 2, dig_immediate=2, not_in_creative_inventory=1 },
selection_box = { type = "wallmounted", },
drop = 'homedecor:exterior_door_fancy_right',
})
@ -379,7 +379,7 @@ minetest.register_node('homedecor:exterior_door_fancy_b_o_right', {
paramtype = "light",
paramtype2 = 'wallmounted',
walkable = false,
groups = { choppy = 2, dig_immediate=2 },
groups = { choppy = 2, dig_immediate=2, not_in_creative_inventory=1 },
selection_box = { type = "wallmounted", },
drop = 'homedecor:exterior_door_fancy_right',
})

View File

@ -157,7 +157,7 @@ minetest.register_node('homedecor:folding_door_mahogany_a_c', {
paramtype = "light",
paramtype2 = "wallmounted",
walkable = true,
groups = { choppy = 2, dig_immediate=2 },
groups = { choppy = 2, dig_immediate=2, not_in_creative_inventory=1 },
selection_box = { type = "wallmounted" },
drop = 'homedecor:folding_door_mahogany',
})
@ -171,7 +171,7 @@ minetest.register_node('homedecor:folding_door_mahogany_b_c', {
paramtype = "light",
paramtype2 = "wallmounted",
walkable = true,
groups = { choppy = 2, dig_immediate=2 },
groups = { choppy = 2, dig_immediate=2, not_in_creative_inventory=1 },
selection_box = { type = "wallmounted" },
drop = 'homedecor:folding_door_mahogany',
})
@ -185,7 +185,7 @@ minetest.register_node('homedecor:folding_door_mahogany_a_o', {
paramtype = "light",
paramtype2 = "wallmounted",
walkable = false,
groups = { choppy = 2, dig_immediate=2 },
groups = { choppy = 2, dig_immediate=2, not_in_creative_inventory=1 },
selection_box = { type = "wallmounted", },
drop = 'homedecor:folding_door_mahogany',
})
@ -199,7 +199,7 @@ minetest.register_node('homedecor:folding_door_mahogany_b_o', {
paramtype = "light",
paramtype2 = 'wallmounted',
walkable = false,
groups = { choppy = 2, dig_immediate=2 },
groups = { choppy = 2, dig_immediate=2, not_in_creative_inventory=1 },
selection_box = { type = "wallmounted", },
drop = 'homedecor:folding_door_mahogany',
})
@ -333,7 +333,7 @@ minetest.register_node('homedecor:folding_door_mahogany_a_c_right', {
paramtype = "light",
paramtype2 = "wallmounted",
walkable = true,
groups = { choppy = 2, dig_immediate=2 },
groups = { choppy = 2, dig_immediate=2, not_in_creative_inventory=1 },
selection_box = { type = "wallmounted" },
drop = 'homedecor:folding_door_mahogany_right',
})
@ -347,7 +347,7 @@ minetest.register_node('homedecor:folding_door_mahogany_b_c_right', {
paramtype = "light",
paramtype2 = "wallmounted",
walkable = true,
groups = { choppy = 2, dig_immediate=2 },
groups = { choppy = 2, dig_immediate=2, not_in_creative_inventory=1 },
selection_box = { type = "wallmounted" },
drop = 'homedecor:folding_door_mahogany_right',
})
@ -361,7 +361,7 @@ minetest.register_node('homedecor:folding_door_mahogany_a_o_right', {
paramtype = "light",
paramtype2 = "wallmounted",
walkable = false,
groups = { choppy = 2, dig_immediate=2 },
groups = { choppy = 2, dig_immediate=2, not_in_creative_inventory=1 },
selection_box = { type = "wallmounted", },
drop = 'homedecor:folding_door_mahogany_right',
})
@ -375,7 +375,7 @@ minetest.register_node('homedecor:folding_door_mahogany_b_o_right', {
paramtype = "light",
paramtype2 = 'wallmounted',
walkable = false,
groups = { choppy = 2, dig_immediate=2 },
groups = { choppy = 2, dig_immediate=2, not_in_creative_inventory=1 },
selection_box = { type = "wallmounted", },
drop = 'homedecor:folding_door_mahogany_right',
})
@ -414,7 +414,7 @@ minetest.register_craft({
})
-- You only need flowers and coal to get the dark orange necessary to actually
-- You only need Unfiied Dyes to get the dark orange necessary to actually
-- craft a mahogany door (either one), but not to /give or use one.
if ( minetest.get_modpath("flowers") ) ~= nil then

View File

@ -154,7 +154,7 @@ minetest.register_node('homedecor:folding_door_oak_a_c', {
paramtype = "light",
paramtype2 = "wallmounted",
walkable = true,
groups = { choppy = 2, dig_immediate=2 },
groups = { choppy = 2, dig_immediate=2, not_in_creative_inventory=1 },
selection_box = { type = "wallmounted" },
drop = 'homedecor:folding_door_oak',
})
@ -168,7 +168,7 @@ minetest.register_node('homedecor:folding_door_oak_b_c', {
paramtype = "light",
paramtype2 = "wallmounted",
walkable = true,
groups = { choppy = 2, dig_immediate=2 },
groups = { choppy = 2, dig_immediate=2, not_in_creative_inventory=1 },
selection_box = { type = "wallmounted" },
drop = 'homedecor:folding_door_oak',
})
@ -182,7 +182,7 @@ minetest.register_node('homedecor:folding_door_oak_a_o', {
paramtype = "light",
paramtype2 = "wallmounted",
walkable = false,
groups = { choppy = 2, dig_immediate=2 },
groups = { choppy = 2, dig_immediate=2, not_in_creative_inventory=1 },
selection_box = { type = "wallmounted", },
drop = 'homedecor:folding_door_oak',
})
@ -196,7 +196,7 @@ minetest.register_node('homedecor:folding_door_oak_b_o', {
paramtype = "light",
paramtype2 = "wallmounted",
walkable = false,
groups = { choppy = 2, dig_immediate=2 },
groups = { choppy = 2, dig_immediate=2, not_in_creative_inventory=1 },
selection_box = { type = "wallmounted", },
drop = 'homedecor:folding_door_oak',
})
@ -328,7 +328,7 @@ minetest.register_node('homedecor:folding_door_oak_a_c_right', {
paramtype = "light",
paramtype2 = "wallmounted",
walkable = true,
groups = { choppy = 2, dig_immediate=2 },
groups = { choppy = 2, dig_immediate=2, not_in_creative_inventory=1 },
selection_box = { type = "wallmounted" },
drop = 'homedecor:folding_door_oak_right',
})
@ -342,7 +342,7 @@ minetest.register_node('homedecor:folding_door_oak_b_c_right', {
paramtype = "light",
paramtype2 = "wallmounted",
walkable = true,
groups = { choppy = 2, dig_immediate=2 },
groups = { choppy = 2, dig_immediate=2, not_in_creative_inventory=1 },
selection_box = { type = "wallmounted" },
drop = 'homedecor:folding_door_oak_right',
})
@ -356,7 +356,7 @@ minetest.register_node('homedecor:folding_door_oak_a_o_right', {
paramtype = "light",
paramtype2 = "wallmounted",
walkable = false,
groups = { choppy = 2, dig_immediate=2 },
groups = { choppy = 2, dig_immediate=2, not_in_creative_inventory=1 },
selection_box = { type = "wallmounted", },
drop = 'homedecor:folding_door_oak_right',
})
@ -370,7 +370,7 @@ minetest.register_node('homedecor:folding_door_oak_b_o_right', {
paramtype = "light",
paramtype2 = "wallmounted",
walkable = false,
groups = { choppy = 2, dig_immediate=2 },
groups = { choppy = 2, dig_immediate=2, not_in_creative_inventory=1 },
selection_box = { type = "wallmounted", },
drop = 'homedecor:folding_door_oak_right',
})

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(),
})