Make cobble stairs craftable (#860)
* Update init.lua * Update init.lua
This commit is contained in:
parent
7733c2cb67
commit
2cfbd9b4c4
1 changed files with 18 additions and 0 deletions
|
@ -88,6 +88,24 @@ crafting.register_recipe({
|
||||||
level = 1,
|
level = 1,
|
||||||
})
|
})
|
||||||
|
|
||||||
|
-- Cobble Stairs
|
||||||
|
crafting.register_recipe({
|
||||||
|
type = "inv",
|
||||||
|
output = "stairs:stair_cobble 8",
|
||||||
|
items = { "default:cobble 6"},
|
||||||
|
always_known = true,
|
||||||
|
level = 1,
|
||||||
|
})
|
||||||
|
|
||||||
|
-- Desert Cobble Stairs
|
||||||
|
crafting.register_recipe({
|
||||||
|
type = "inv",
|
||||||
|
output = "stairs:stair_desert_cobble 8",
|
||||||
|
items = { "default:desert_cobble 6"},
|
||||||
|
always_known = true,
|
||||||
|
level = 1,
|
||||||
|
})
|
||||||
|
|
||||||
-- Wood x4
|
-- Wood x4
|
||||||
crafting.register_recipe({
|
crafting.register_recipe({
|
||||||
type = "inv",
|
type = "inv",
|
||||||
|
|
Loading…
Reference in a new issue