1
0
mirror of https://github.com/minetest/minetest_game.git synced 2025-06-28 12:46:02 +02:00

Crafting: Remove duplicate reversed recipes (#1777)

For axes and hoes only use one recipe that matches the appearance of the texture and in inventory.
This commit is contained in:
Paramat
2017-07-16 13:31:21 +01:00
committed by sfan5
parent f3e29bc2cc
commit 81f885795d
2 changed files with 3 additions and 63 deletions

View File

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