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:
Vanessa Ezekowitz 2013-03-20 00:24:27 -04:00
parent 7c302d0874
commit 98840c48a1
4 changed files with 7 additions and 7 deletions

View File

@ -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()"
-- ------------------------------------------------------------------

View File

@ -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

View File

@ -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({

View File

@ -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()"
-- ------------------------------------------------------------------