From bdd8de8a6a786383863e63eab12ad1f69e5e304d Mon Sep 17 00:00:00 2001 From: auouymous Date: Fri, 4 Sep 2020 01:28:45 -0600 Subject: [PATCH] Restore recipe for bronze block to ingots --- technic/crafts.lua | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/technic/crafts.lua b/technic/crafts.lua index 3b17e6d..d43ab34 100644 --- a/technic/crafts.lua +++ b/technic/crafts.lua @@ -7,6 +7,13 @@ minetest.clear_craft({ type = "shapeless", output = "default:bronze_ingot" }) +-- Restore recipe for bronze block to ingots +minetest.register_craft({ + output = "default:bronze_ingot 9", + recipe = { + {"default:bronzeblock"} + } +}) -- Accelerator tube if pipeworks.enable_accelerator_tube then