From 2cfbd9b4c46eb0e1e4657da1aaf292eda0c4b582 Mon Sep 17 00:00:00 2001 From: _Lucy <80708819+Lucyucy@users.noreply.github.com> Date: Wed, 28 Apr 2021 16:20:21 +0200 Subject: [PATCH] Make cobble stairs craftable (#860) * Update init.lua * Update init.lua --- mods/ctf/ctf_crafting/init.lua | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/mods/ctf/ctf_crafting/init.lua b/mods/ctf/ctf_crafting/init.lua index a819871..e78c6b8 100644 --- a/mods/ctf/ctf_crafting/init.lua +++ b/mods/ctf/ctf_crafting/init.lua @@ -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",