diff options
author | Daniel <daniel112092@gmail.com> | 2016-09-03 11:50:05 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-09-03 11:50:05 +0200 |
commit | 9b3d7149cfc846b8b6cac06fcfec36d0be44dd17 (patch) | |
tree | 41b05326b677a36473ae5c766eeec5f727160008 /src/main/java/gregtech/common/tileentities | |
parent | 4c60c1e41ee4f58e359d503206ec6ac52539d360 (diff) | |
download | GT5-Unofficial-9b3d7149cfc846b8b6cac06fcfec36d0be44dd17.tar.gz GT5-Unofficial-9b3d7149cfc846b8b6cac06fcfec36d0be44dd17.tar.bz2 GT5-Unofficial-9b3d7149cfc846b8b6cac06fcfec36d0be44dd17.zip |
Update GT_MetaTileEntity_LargeTurbine_Plasma.java
Diffstat (limited to 'src/main/java/gregtech/common/tileentities')
-rw-r--r-- | src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_LargeTurbine_Plasma.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_LargeTurbine_Plasma.java b/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_LargeTurbine_Plasma.java index 923eaabcdb..846490d1ec 100644 --- a/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_LargeTurbine_Plasma.java +++ b/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_LargeTurbine_Plasma.java @@ -130,9 +130,9 @@ public class GT_MetaTileEntity_LargeTurbine_Plasma extends GT_MetaTileEntity_Lar if (efficiency < 0) efficiency = 0; // Can happen with really ludicrously poor inefficiency. tEU *= efficiency; - tEU = Math.max(1, tEU * aBaseEff / 10000); + tEU = Math.max(1, tEU * (aBaseEff / 10000)); } else { - tEU = tEU * aBaseEff / 10000; + tEU = tEU * (aBaseEff / 10000); } return tEU; |