13 lines
228 B
Lua
13 lines
228 B
Lua
minetest.register_craft({
|
|
type = "cooking",
|
|
output = "main:gold",
|
|
recipe = "nether:goldore",
|
|
cooktime = 5,
|
|
})
|
|
minetest.register_craft({
|
|
type = "cooking",
|
|
output = "main:iron",
|
|
recipe = "nether:ironore",
|
|
cooktime = 3,
|
|
})
|