diff options
author | Mary <33456283+FourIsTheNumber@users.noreply.github.com> | 2024-09-06 15:21:54 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-06 14:21:54 -0500 |
commit | ab1349967d5d78a9361a2f2421b605984ac5a2ec (patch) | |
tree | 5d253694b26a01745190a9ce20101e1758af3f4f /src/main/java/gtPlusPlus/core | |
parent | 2cf79a7513ae1d5893812fbc89b8f3119ce67099 (diff) | |
download | GT5-Unofficial-ab1349967d5d78a9361a2f2421b605984ac5a2ec.tar.gz GT5-Unofficial-ab1349967d5d78a9361a2f2421b605984ac5a2ec.tar.bz2 GT5-Unofficial-ab1349967d5d78a9361a2f2421b605984ac5a2ec.zip |
Deprecate Large Processing Factory (#3086)
Diffstat (limited to 'src/main/java/gtPlusPlus/core')
-rw-r--r-- | src/main/java/gtPlusPlus/core/recipe/RecipesMachines.java | 32 |
1 files changed, 6 insertions, 26 deletions
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 |