Update GT_MetaTileEntity_LargeTurbine_Plasma.java

This commit is contained in:
Daniel 2016-09-03 11:50:05 +02:00 committed by Dream-Master
parent 8e7e866990
commit 1de6b9c23a

View file

@ -130,9 +130,9 @@ public class GT_MetaTileEntity_LargeTurbine_Plasma extends GT_MetaTileEntity_Lar
if (efficiency < 0) if (efficiency < 0)
efficiency = 0; // Can happen with really ludicrously poor inefficiency. efficiency = 0; // Can happen with really ludicrously poor inefficiency.
tEU *= efficiency; tEU *= efficiency;
tEU = Math.max(1, tEU * aBaseEff / 10000); tEU = Math.max(1, tEU * (aBaseEff / 10000));
} else { } else {
tEU = tEU * aBaseEff / 10000; tEU = tEU * (aBaseEff / 10000);
} }
return tEU; return tEU;