From e04bafce83b18ca06ecda4ad44e1bc097da34e1c Mon Sep 17 00:00:00 2001 From: James David Clarke Date: Fri, 22 Dec 2023 05:15:32 +0000 Subject: [PATCH] Added Smelting recipe for making raw_latex in mineclone2 --- technic/crafts.lua | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/technic/crafts.lua b/technic/crafts.lua index f02d670..e7e7234 100644 --- a/technic/crafts.lua +++ b/technic/crafts.lua @@ -207,3 +207,11 @@ minetest.register_craft({ type = "cooking", recipe = "technic:rubber_goo", }) + +if minetest.get_modpath("mcl_core") then +minetest.register_craft({ + output = "technic:raw_latex", + type = "cooking", + recipe = "mcl_mobitems:slimeball", +}) +end \ No newline at end of file