1
0
mirror of https://github.com/minetest-mods/3d_armor.git synced 2025-06-28 06:20:33 +02:00

Add missing fuel recipes for wood and cactus armor.

Fixes https://github.com/stujones11/minetest-3d_armor/issues/174
This commit is contained in:
orbea
2020-04-29 20:04:16 -07:00
committed by Buckaroo Banzai
parent acd8b2647d
commit dbc6ccf089
2 changed files with 36 additions and 0 deletions

View File

@ -68,6 +68,11 @@ if armor.materials.wood then
{"default:steel_ingot"},
},
})
minetest.register_craft({
type = "fuel",
recipe = "shields:shield_wood",
burntime = 8,
})
end
if armor.materials.cactus then
@ -107,6 +112,11 @@ if armor.materials.cactus then
{"default:steel_ingot"},
},
})
minetest.register_craft({
type = "fuel",
recipe = "shields:shield_cactus",
burntime = 16,
})
end
if armor.materials.steel then