Fix furnace and axe recipes
This commit is contained in:
parent
e6e9760320
commit
0c68a4564e
1 changed files with 2 additions and 2 deletions
|
@ -46,7 +46,7 @@ for _, orex in pairs(full_ores) do
|
||||||
crafting.register_recipe({
|
crafting.register_recipe({
|
||||||
type = "inv",
|
type = "inv",
|
||||||
output = "default:axe_" .. orex[1],
|
output = "default:axe_" .. orex[1],
|
||||||
items = { "default:stick 2", orex[2] .. " 2" },
|
items = { "default:stick 2", orex[2] .. " 3" },
|
||||||
always_known = true,
|
always_known = true,
|
||||||
level = 1,
|
level = 1,
|
||||||
})
|
})
|
||||||
|
@ -71,7 +71,7 @@ crafting.register_recipe({
|
||||||
crafting.register_recipe({
|
crafting.register_recipe({
|
||||||
type = "inv",
|
type = "inv",
|
||||||
output = "default:furnace",
|
output = "default:furnace",
|
||||||
items = { "default:cobble 10" },
|
items = { "default:cobble 8" },
|
||||||
always_known = true,
|
always_known = true,
|
||||||
level = 1,
|
level = 1,
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in a new issue