From b2fc3028228747b75f68b7f9756de0d67099b22a Mon Sep 17 00:00:00 2001 From: ANAND Date: Thu, 28 Feb 2019 09:18:50 +0530 Subject: [PATCH] Combine furnace recipes; use group:stone as input (#340) --- mods/ctf/ctf_crafting/init.lua | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/mods/ctf/ctf_crafting/init.lua b/mods/ctf/ctf_crafting/init.lua index 98b7d3d..380d684 100644 --- a/mods/ctf/ctf_crafting/init.lua +++ b/mods/ctf/ctf_crafting/init.lua @@ -46,20 +46,11 @@ crafting.register_recipe({ level = 1, }) --- Furnace <== Cobble x8 +-- Furnace <== group:stone x8 crafting.register_recipe({ type = "inv", output = "default:furnace", - items = { "default:cobble 8" }, - always_known = true, - level = 1, -}) - --- Furnace <== Desert cobble x8 -crafting.register_recipe({ - type = "inv", - output = "default:furnace", - items = { "default:desert_cobble 8" }, + items = { "group:stone 8" }, always_known = true, level = 1, })