Turbines don't shut down automatically

Turbines no longer shut down automatically when they lose steam.  Instead, efficiency drops 10% per cycle when inactive.
This commit is contained in:
pyure 2015-08-15 00:03:33 -04:00
parent 0341ae67ef
commit f0090eef75

View file

@ -154,13 +154,14 @@ public abstract class GT_MetaTileEntity_LargeTurbine extends GT_MetaTileEntity_M
else
this.mEUt = newPower;
this.mMaxProgresstime = 1;
this.mEfficiencyIncrease = (10);
if (mEUt <= 0) {
mEfficiency = 0;
stopMachine();
this.mEfficiencyIncrease = (-10);
//stopMachine();
return false;
} else {
this.mMaxProgresstime = 1;
this.mEfficiencyIncrease = (10);
return true;
}
}