1
0
mirror of https://github.com/mt-mods/coloredwood.git synced 2025-06-30 23:20:35 +02: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:
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

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