add all colored sticks to the stick group

This commit is contained in:
Vanessa Ezekowitz 2014-11-16 12:38:51 -05:00
parent 18df6ea1f6
commit c7d2474e0b
1 changed files with 4 additions and 4 deletions

View File

@ -40,13 +40,13 @@ for shade = 1, 3 do
minetest.register_craftitem(colorname, {
description = itemdesc,
inventory_image = pngname,
groups = { coloredsticks=1, not_in_creative_inventory=1 }
groups = { coloredsticks=1, not_in_creative_inventory=1, stick=1 }
})
minetest.register_craftitem(s50colorname, {
description = s50itemdesc,
inventory_image = s50pngname,
groups = { coloredsticks=1, not_in_creative_inventory=1 }
groups = { coloredsticks=1, not_in_creative_inventory=1, stick=1 }
})
minetest.register_craft( {
@ -81,7 +81,7 @@ for hue = 1, 12 do
minetest.register_craftitem(colorname, {
description = itemdesc,
inventory_image = pngname,
groups = { coloredsticks=1, not_in_creative_inventory=1 }
groups = { coloredsticks=1, not_in_creative_inventory=1, stick=1 }
})
minetest.register_craft({
@ -120,7 +120,7 @@ for grey = 1,5 do
minetest.register_craftitem(greyshadename, {
description = itemdesc,
inventory_image = pngname,
groups = { coloredsticks=1, not_in_creative_inventory=1 }
groups = { coloredsticks=1, not_in_creative_inventory=1, stick=1 }
})
minetest.register_craft({