Make cobble stairs craftable (#860)

* Update init.lua

* Update init.lua
This commit is contained in:
_Lucy 2021-04-28 16:20:21 +02:00 committed by GitHub
parent 7733c2cb67
commit 2cfbd9b4c4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 18 additions and 0 deletions

View File

@ -88,6 +88,24 @@ crafting.register_recipe({
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
crafting.register_recipe({
type = "inv",