From 6e6072a4d72314e9ce7a30ca0d0f07cf1bf97f5f Mon Sep 17 00:00:00 2001 From: miozune Date: Sat, 10 Sep 2022 00:30:44 +0900 Subject: Adapt to Wiremill Configuration Circuit support (#341) --- .../gregtech/loaders/RecipeGen_MetalRecipe.java | 25 ---------------------- 1 file changed, 25 deletions(-) (limited to 'src/main/java/gtPlusPlus/xmod/gregtech/loaders') diff --git a/src/main/java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_MetalRecipe.java b/src/main/java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_MetalRecipe.java index b08daa7d9a..eb6fa4ee75 100644 --- a/src/main/java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_MetalRecipe.java +++ b/src/main/java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_MetalRecipe.java @@ -96,30 +96,5 @@ public class RecipeGen_MetalRecipe extends RecipeGen_Base { } else { Logger.WARNING("Lathe Screw Recipe: " + material.getLocalizedName() + " - Failed"); } - - // Fine Wire - if (ItemUtils.checkForInvalidItems(material.getFineWire(1)) - && (ItemUtils.checkForInvalidItems(material.getIngot(1)) - || ItemUtils.checkForInvalidItems(material.getWire01(1)))) - if (GT_Values.RA.addWiremillRecipe( - ItemUtils.checkForInvalidItems(material.getWire01(1)) - ? material.getWire01(1) - : material.getIngot(1), - material.getFineWire(ItemUtils.checkForInvalidItems(material.getWire01(1)) ? 4 : 8), - 100, - 4)) { - Logger.WARNING("Wiremill Fine Wire Recipe: " + material.getLocalizedName() + " - Success"); - } else { - Logger.WARNING("Wiremill Fine Wire Recipe: " + material.getLocalizedName() + " - Failed"); - } - - // Fine Wire - if (ItemUtils.checkForInvalidItems(material.getFineWire(1)) - && (ItemUtils.checkForInvalidItems(material.getRod(1)))) - if (GT_Values.RA.addWiremillRecipe(material.getRod(1), material.getFineWire(4), 50, 4)) { - Logger.WARNING("Wiremill Fine Wire Recipe: " + material.getLocalizedName() + " - Success"); - } else { - Logger.WARNING("Wiremill Fine Wire Recipe: " + material.getLocalizedName() + " - Failed"); - } } } -- cgit