From fae9f76d4378e264ae1818efe6a8beb81da009c8 Mon Sep 17 00:00:00 2001 From: James David Clarke Date: Fri, 22 Dec 2023 12:30:23 +0000 Subject: [PATCH] Fixed copper lump grinding recipe for mineclone2 --- technic/mcl_support.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/technic/mcl_support.lua b/technic/mcl_support.lua index 20f3ff6..2c1d36e 100644 --- a/technic/mcl_support.lua +++ b/technic/mcl_support.lua @@ -8,7 +8,7 @@ copper_ingrediant = mcl_core_modpath and "mcl_copper:copper_ingot" or 'default:c iron_ingrediant = mcl_core_modpath and "mcl_core:iron_ingot" or 'default:steel_ingot' iron_lump_ingrediant = mcl_core_modpath and "mcl_raw_ores:raw_iron" or 'default:iron_lump' gold_lump_ingrediant = mcl_core_modpath and "mcl_raw_ores:raw_gold" or 'default:gold_lump' -copper_lump_ingrediant = mcl_core_modpath and "mcl_raw_ores:raw_copper" or 'default:copper_lump' +copper_lump_ingrediant = mcl_core_modpath and "mcl_copper:raw_copper" or 'default:copper_lump' mese_crystal_ingrediant = mcl_core_modpath and "mesecons:wire_00000000_off" or 'default:mese_crystal' diamond_ingrediant = mcl_core_modpath and "mcl_core:diamond" or 'default:diamond' glass_ingrediant = mcl_core_modpath and "mcl_core:glass" or 'default:glass'