forked from nalc/homedecor_modpack
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:
8
init.lua
8
init.lua
@ -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(),
|
||||
})
|
||||
|
||||
|
Reference in New Issue
Block a user