Update GT_MetaTileEntity_LargeTurbine.java

This commit is contained in:
Daniel 2016-09-03 12:09:49 +02:00 committed by GitHub
parent 0c3a42aa7d
commit 734a290302

View file

@ -163,7 +163,7 @@ public abstract class GT_MetaTileEntity_LargeTurbine extends GT_MetaTileEntity_M
this.mMaxProgresstime = 1; this.mMaxProgresstime = 1;
this.mEfficiencyIncrease = (10); this.mEfficiencyIncrease = (10);
if(this.mDynamoHatches.size()>0){ if(this.mDynamoHatches.size()>0){
if(this.mDynamoHatches.get(0).getBaseMetaTileEntity().getOutputVoltage() < (int)((long)mEUt * (long)mEfficiency) / (long)10000){ if(this.mDynamoHatches.get(0).getBaseMetaTileEntity().getOutputVoltage() < (int)((long)mEUt * (long)mEfficiency) / 10000L){
explodeMultiblock();} explodeMultiblock();}
} }
return true; return true;