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:
@ -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
|
||||
|
Reference in New Issue
Block a user