mirror of
https://github.com/luanti-org/minetest_game.git
synced 2025-05-21 14:53:16 -04:00
Mirror recipe for axe
This commit is contained in:
parent
1420376e32
commit
6ded149ee9
1 changed files with 8 additions and 1 deletions
|
@ -442,7 +442,14 @@ for name, mat in pairs(craft_ingreds) do
|
||||||
{"", "group:stick"}
|
{"", "group:stick"}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
minetest.register_craft({
|
||||||
|
output = "default:axe_".. name,
|
||||||
|
recipe = {
|
||||||
|
{mat, mat},
|
||||||
|
{"group:stick", mat},
|
||||||
|
{"group:stick", ""}
|
||||||
|
}
|
||||||
|
})
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "default:sword_".. name,
|
output = "default:sword_".. name,
|
||||||
recipe = {
|
recipe = {
|
||||||
|
|
Loading…
Add table
Reference in a new issue