Fix #771 - 9x output on boosted Diesel
Remove an extra efficiency multiplier. `mEfficiency * mEUt` is already done in `GT_MetaTileEntity_MultiBlockBase.onRunningTick`
This commit is contained in:
parent
d699de59ba
commit
f98ce7ef08
1 changed files with 1 additions and 1 deletions
|
@ -89,7 +89,7 @@ public class GT_MetaTileEntity_DieselEngine extends GT_MetaTileEntity_MultiBlock
|
||||||
|
|
||||||
fuelValue = aFuel.mSpecialValue;
|
fuelValue = aFuel.mSpecialValue;
|
||||||
fuelRemaining = hatchFluid1.amount; //Record available fuel
|
fuelRemaining = hatchFluid1.amount; //Record available fuel
|
||||||
this.mEUt = mEfficiency < 2000 ? 0 : (int) (2048 * ((float) mEfficiency / 10000)); //Output 0 if startup is less than 20%
|
this.mEUt = mEfficiency < 2000 ? 0 : 2048; //Output 0 if startup is less than 20%
|
||||||
this.mProgresstime = 1;
|
this.mProgresstime = 1;
|
||||||
this.mMaxProgresstime = 1;
|
this.mMaxProgresstime = 1;
|
||||||
this.mEfficiencyIncrease = 15;
|
this.mEfficiencyIncrease = 15;
|
||||||
|
|
Loading…
Reference in a new issue