Make new metals actually possible to get
This commit is contained in:
parent
7ab7f642f1
commit
ed9b0fcd92
@ -85,7 +85,7 @@ crafting.register_craft(
|
||||
output = "default:ingot_steel 2",
|
||||
items = {
|
||||
"default:lump_coal",
|
||||
"default:ingot_steel 4",
|
||||
"default:ingot_wrought_iron 4",
|
||||
}
|
||||
})
|
||||
|
||||
|
@ -45,6 +45,8 @@ minetest.register_craft(
|
||||
cooktime = 6,
|
||||
})
|
||||
|
||||
-- Metal smelting
|
||||
|
||||
minetest.register_craft(
|
||||
{
|
||||
type = "cooking",
|
||||
@ -53,6 +55,22 @@ minetest.register_craft(
|
||||
cooktime = 3,
|
||||
})
|
||||
|
||||
minetest.register_craft(
|
||||
{
|
||||
type = "cooking",
|
||||
output = "default:ingot_tin",
|
||||
recipe = "default:lump_tin",
|
||||
cooktime = 3,
|
||||
})
|
||||
|
||||
minetest.register_craft(
|
||||
{
|
||||
type = "cooking",
|
||||
output = "default:ingot_copper",
|
||||
recipe = "default:lump_copper",
|
||||
cooktime = 3,
|
||||
})
|
||||
|
||||
minetest.register_craft(
|
||||
{
|
||||
type = "cooking",
|
||||
|
Loading…
Reference in New Issue
Block a user