Skip to content
Snippets Groups Projects
Commit a8ad9bfc authored by Zefram's avatar Zefram Committed by sfan5
Browse files

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.
parent d4c24a30
No related branches found
No related tags found
No related merge requests found
...@@ -212,8 +212,8 @@ minetest.register_craft({ ...@@ -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({ ...@@ -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({ ...@@ -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({ ...@@ -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({ ...@@ -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({ ...@@ -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', ''},
} }
}) })
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment