mirror of
https://github.com/mt-mods/coloredwood.git
synced 2024-11-13 06:00:22 +01:00
removed all items from the creative inventory
there's just too damn many. Craft them as described on the forum thread for this mod, as usual.
This commit is contained in:
parent
7c302d0874
commit
98840c48a1
|
@ -8,7 +8,7 @@ colored_block_description = "Wooden Fence"
|
|||
neutral_block = "default:fence_wood"
|
||||
colored_block_sunlight = "false"
|
||||
colored_block_walkable = "true"
|
||||
colored_block_groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=2}
|
||||
colored_block_groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=2, not_in_creative_inventory=1}
|
||||
colored_block_sound = "default.node_sound_wood_defaults()"
|
||||
|
||||
-- ------------------------------------------------------------------
|
||||
|
|
2
init.lua
2
init.lua
|
@ -1,4 +1,4 @@
|
|||
-- Colored Wood mod by Vanessa Ezekowitz ~~ 2012-07-17
|
||||
-- Colored Wood mod by Vanessa Ezekowitz ~~ 2013-03-20
|
||||
-- based on my unifieddyes template.
|
||||
--
|
||||
-- License: WTFPL
|
||||
|
|
|
@ -116,13 +116,13 @@ for shade = 1, 3 do
|
|||
minetest.register_craftitem(colorname, {
|
||||
description = itemdesc,
|
||||
inventory_image = pngname,
|
||||
groups = { coloredsticks=1 }
|
||||
groups = { coloredsticks=1, not_in_creative_inventory=1 }
|
||||
})
|
||||
|
||||
minetest.register_craftitem(s50colorname, {
|
||||
description = s50itemdesc,
|
||||
inventory_image = s50pngname,
|
||||
groups = { coloredsticks=1 }
|
||||
groups = { coloredsticks=1, not_in_creative_inventory=1 }
|
||||
})
|
||||
|
||||
minetest.register_craft( {
|
||||
|
@ -157,7 +157,7 @@ for hue = 1, 12 do
|
|||
minetest.register_craftitem(colorname, {
|
||||
description = itemdesc,
|
||||
inventory_image = pngname,
|
||||
groups = { coloredsticks=1 }
|
||||
groups = { coloredsticks=1, not_in_creative_inventory=1 }
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
|
@ -197,7 +197,7 @@ for grey = 1,5 do
|
|||
minetest.register_craftitem(greyshadename, {
|
||||
description = itemdesc,
|
||||
inventory_image = pngname,
|
||||
groups = { coloredsticks=1 }
|
||||
groups = { coloredsticks=1, not_in_creative_inventory=1 }
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
|
|
2
wood.lua
2
wood.lua
|
@ -8,7 +8,7 @@ colored_block_description = "Wood Planks"
|
|||
neutral_block = "default:wood"
|
||||
colored_block_sunlight = "false"
|
||||
colored_block_walkable = "true"
|
||||
colored_block_groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=2}
|
||||
colored_block_groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=2, not_in_creative_inventory=1}
|
||||
colored_block_sound = "default.node_sound_wood_defaults()"
|
||||
|
||||
-- ------------------------------------------------------------------
|
||||
|
|
Loading…
Reference in New Issue
Block a user