Consistently use group:stick in tool recipes

The left-handed recipes for axes were using default:stick instead of
the group:stick used by all other tool recipes.
This commit is contained in:
Zefram 2014-07-20 17:42:30 +01:00 committed by sfan5
parent d4c24a30e9
commit a8ad9bfc9d
1 changed files with 12 additions and 12 deletions

View File

@ -212,8 +212,8 @@ minetest.register_craft({
output = 'default:axe_wood', output = 'default:axe_wood',
recipe = { recipe = {
{'group:wood', 'group:wood'}, {'group:wood', 'group:wood'},
{'default:stick', 'group:wood'}, {'group:stick', 'group:wood'},
{'default:stick',''}, {'group:stick',''},
} }
}) })
@ -221,8 +221,8 @@ minetest.register_craft({
output = 'default:axe_stone', output = 'default:axe_stone',
recipe = { recipe = {
{'group:stone', 'group:stone'}, {'group:stone', 'group:stone'},
{'default:stick', 'group:stone'}, {'group:stick', 'group:stone'},
{'default:stick', ''}, {'group:stick', ''},
} }
}) })
@ -230,8 +230,8 @@ minetest.register_craft({
output = 'default:axe_steel', output = 'default:axe_steel',
recipe = { recipe = {
{'default:steel_ingot', 'default:steel_ingot'}, {'default:steel_ingot', 'default:steel_ingot'},
{'default:stick', 'default:steel_ingot'}, {'group:stick', 'default:steel_ingot'},
{'default:stick', ''}, {'group:stick', ''},
} }
}) })
@ -239,8 +239,8 @@ minetest.register_craft({
output = 'default:axe_bronze', output = 'default:axe_bronze',
recipe = { recipe = {
{'default:bronze_ingot', 'default:bronze_ingot'}, {'default:bronze_ingot', 'default:bronze_ingot'},
{'default:stick', 'default:bronze_ingot'}, {'group:stick', 'default:bronze_ingot'},
{'default:stick', ''}, {'group:stick', ''},
} }
}) })
@ -248,8 +248,8 @@ minetest.register_craft({
output = 'default:axe_mese', output = 'default:axe_mese',
recipe = { recipe = {
{'default:mese_crystal', 'default:mese_crystal'}, {'default:mese_crystal', 'default:mese_crystal'},
{'default:stick', 'default:mese_crystal'}, {'group:stick', 'default:mese_crystal'},
{'default:stick', ''}, {'group:stick', ''},
} }
}) })
@ -257,8 +257,8 @@ minetest.register_craft({
output = 'default:axe_diamond', output = 'default:axe_diamond',
recipe = { recipe = {
{'default:diamond', 'default:diamond'}, {'default:diamond', 'default:diamond'},
{'default:stick', 'default:diamond'}, {'group:stick', 'default:diamond'},
{'default:stick', ''}, {'group:stick', ''},
} }
}) })