From ab1349967d5d78a9361a2f2421b605984ac5a2ec Mon Sep 17 00:00:00 2001 From: Mary <33456283+FourIsTheNumber@users.noreply.github.com> Date: Fri, 6 Sep 2024 15:21:54 -0400 Subject: Deprecate Large Processing Factory (#3086) --- .../gtPlusPlus/core/recipe/RecipesMachines.java | 32 ++++------------------ 1 file changed, 6 insertions(+), 26 deletions(-) (limited to 'src/main/java/gtPlusPlus/core') diff --git a/src/main/java/gtPlusPlus/core/recipe/RecipesMachines.java b/src/main/java/gtPlusPlus/core/recipe/RecipesMachines.java index fecf4fcde6..ae3817f141 100644 --- a/src/main/java/gtPlusPlus/core/recipe/RecipesMachines.java +++ b/src/main/java/gtPlusPlus/core/recipe/RecipesMachines.java @@ -2874,29 +2874,21 @@ public class RecipesMachines { CI.getTieredCircuit(5), "plateStaballoy", GregtechItemList.Industrial_Mixer.get(1)); - } - - if (GTPPCore.ConfigSwitches.enableMultiblock_IndustrialMultiMachine) { - ItemStack plate = MaterialsAlloy.STABALLOY.getPlate(1); - ItemStack o_Compressor = ItemList.Machine_IV_Compressor.get(1); - ItemStack o_Lathe = ItemList.Machine_IV_Lathe.get(1); - ItemStack o_Electromagnet = ItemList.Machine_IV_Polarizer.get(1); - ItemStack o_Fermenter = ItemList.Machine_IV_Fermenter.get(1); - ItemStack o_Distillery = ItemList.Machine_IV_FluidExtractor.get(1); - ItemStack o_Extractor = ItemList.Machine_IV_Extractor.get(1); + final ItemStack staballoyPlate = MaterialsAlloy.STABALLOY.getPlate(1); RecipeUtils.addShapedRecipe( - plate, + staballoyPlate, CI.craftingToolHammer_Hard, - plate, + staballoyPlate, "plateStainlessSteel", "frameGtZirconiumCarbide", "plateStainlessSteel", - plate, + staballoyPlate, CI.craftingToolWrench, - plate, + staballoyPlate, GregtechItemList.Casing_Multi_Use.get(1)); + GTValues.RA.stdBuilder() .itemInputs( MaterialsAlloy.STABALLOY.getPlate(4), @@ -2907,18 +2899,6 @@ public class RecipesMachines { .duration(2 * SECONDS + 10 * TICKS) .eut(16) .addTo(assemblerRecipes); - - RecipeUtils.addShapedRecipe( - o_Compressor, - o_Lathe, - o_Electromagnet, - plate, - ItemUtils.getSimpleStack(ModBlocks.blockProjectTable), - plate, - o_Fermenter, - o_Distillery, - o_Extractor, - GregtechItemList.Industrial_MultiMachine.get(1)); } // Drilling Platform Casings -- cgit