Skip to content

Commit

Permalink
Crafting: Remove duplicate reversed recipes (#1777)
Browse files Browse the repository at this point in the history
For axes and hoes only use one recipe that matches the appearance of the texture and in inventory.
  • Loading branch information
paramat authored and sfan5 committed Nov 19, 2017
1 parent 5186e49 commit 45b96ff
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 63 deletions.
57 changes: 3 additions & 54 deletions mods/default/crafting.lua
Expand Up @@ -190,6 +190,9 @@ minetest.register_craft({
}
})

-- Axes
-- Recipes face left to match appearence in textures and inventory

minetest.register_craft({
output = 'default:axe_wood',
recipe = {
Expand Down Expand Up @@ -244,60 +247,6 @@ minetest.register_craft({
}
})

minetest.register_craft({
output = 'default:axe_wood',
recipe = {
{'group:wood', 'group:wood'},
{'group:stick', 'group:wood'},
{'group:stick',''},
}
})

minetest.register_craft({
output = 'default:axe_stone',
recipe = {
{'group:stone', 'group:stone'},
{'group:stick', 'group:stone'},
{'group:stick', ''},
}
})

minetest.register_craft({
output = 'default:axe_steel',
recipe = {
{'default:steel_ingot', 'default:steel_ingot'},
{'group:stick', 'default:steel_ingot'},
{'group:stick', ''},
}
})

minetest.register_craft({
output = 'default:axe_bronze',
recipe = {
{'default:bronze_ingot', 'default:bronze_ingot'},
{'group:stick', 'default:bronze_ingot'},
{'group:stick', ''},
}
})

minetest.register_craft({
output = 'default:axe_mese',
recipe = {
{'default:mese_crystal', 'default:mese_crystal'},
{'group:stick', 'default:mese_crystal'},
{'group:stick', ''},
}
})

minetest.register_craft({
output = 'default:axe_diamond',
recipe = {
{'default:diamond', 'default:diamond'},
{'group:stick', 'default:diamond'},
{'group:stick', ''},
}
})

minetest.register_craft({
output = 'default:sword_wood',
recipe = {
Expand Down
9 changes: 0 additions & 9 deletions mods/farming/api.lua
Expand Up @@ -118,15 +118,6 @@ farming.register_hoe = function(name, def)
{"", "group:stick", ""}
}
})
-- Reverse Recipe
minetest.register_craft({
output = name:sub(2),
recipe = {
{"", def.material, def.material},
{"", "group:stick", ""},
{"", "group:stick", ""}
}
})
end
end

Expand Down

0 comments on commit 45b96ff

Please sign in to comment.