From dd69992906ab5828338ec7ed7d39182e6e9b24c9 Mon Sep 17 00:00:00 2001 From: Maxim Date: Tue, 17 Jan 2023 18:18:20 +0100 Subject: Remove hack, we no longer need it (#1661) --- .../tileentities/machines/multi/GT_MetaTileEntity_PlasmaForge.java | 5 ----- 1 file changed, 5 deletions(-) (limited to 'src/main/java/gregtech/common') diff --git a/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_PlasmaForge.java b/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_PlasmaForge.java index 0f86736ed0..80371c6cc7 100644 --- a/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_PlasmaForge.java +++ b/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_PlasmaForge.java @@ -1100,11 +1100,6 @@ public class GT_MetaTileEntity_PlasmaForge extends GT_MetaTileEntity_AbstractMul // Gets the EU input of the long tTotalEU = GT_ExoticEnergyInputHelper.getTotalEuMulti(getExoticAndNormalEnergyHatchList()); - // Hacky method to determine if double energy hatches are being used. - if (getExoticAndNormalEnergyHatchList().get(0) instanceof GT_MetaTileEntity_Hatch_Energy) { - tTotalEU /= 2L; - } - // Look up recipe. If not found it will return null. GT_Recipe tRecipe_0 = GT_Recipe.GT_Recipe_Map.sPlasmaForgeRecipes.findRecipe( getBaseMetaTileEntity(), false, tTotalEU, tFluids, tItems); -- cgit