aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/common
diff options
context:
space:
mode:
authorMaxim <maxim235@gmx.de>2023-01-17 18:18:20 +0100
committerGitHub <noreply@github.com>2023-01-17 18:18:20 +0100
commitdd69992906ab5828338ec7ed7d39182e6e9b24c9 (patch)
treea3c2f83de0fda25750554f1f50c148df329a5fab /src/main/java/gregtech/common
parentfd81e406d366818e96aea92d712e76b6dcfeb0ad (diff)
downloadGT5-Unofficial-dd69992906ab5828338ec7ed7d39182e6e9b24c9.tar.gz
GT5-Unofficial-dd69992906ab5828338ec7ed7d39182e6e9b24c9.tar.bz2
GT5-Unofficial-dd69992906ab5828338ec7ed7d39182e6e9b24c9.zip
Remove hack, we no longer need it (#1661)
Diffstat (limited to 'src/main/java/gregtech/common')
-rw-r--r--src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_PlasmaForge.java5
1 files changed, 0 insertions, 5 deletions
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);