Use cooktime of 10 everywhere
This commit is contained in:
parent
621273fc45
commit
e29eb64398
6 changed files with 25 additions and 3 deletions
|
@ -200,21 +200,25 @@ for k, v in pairs(craft_ingreds) do
|
|||
type = "cooking",
|
||||
output = c,
|
||||
recipe = "3d_armor:helmet_"..k,
|
||||
cooktime = 10,
|
||||
})
|
||||
minetest.register_craft({
|
||||
type = "cooking",
|
||||
output = c,
|
||||
recipe = "3d_armor:chestplate_"..k,
|
||||
cooktime = 10,
|
||||
})
|
||||
minetest.register_craft({
|
||||
type = "cooking",
|
||||
output = c,
|
||||
recipe = "3d_armor:leggings_"..k,
|
||||
cooktime = 10,
|
||||
})
|
||||
minetest.register_craft({
|
||||
type = "cooking",
|
||||
output = c,
|
||||
recipe = "3d_armor:boots_"..k,
|
||||
cooktime = 10,
|
||||
})
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue