fix coilage

This commit is contained in:
Technus 2016-12-26 21:43:16 +01:00
parent 2f51bf22c2
commit d6691d4cff

View file

@ -122,7 +122,7 @@ public class GT_MetaTileEntity_ElectricBlastFurnace
}
if(tHeatCapacityDivTiers>0){
this.mEUt = (int) (this.mEUt * (Math.pow(0.95, tHeatCapacityDivTiers)));
this.mMaxProgresstime /=(int)Math.pow((tHeatCapacityDivTiers+2)/ 2,2);//TODO CHECK
this.mMaxProgresstime >>=tHeatCapacityDivTiers/2;//TODO CHECK
}
this.mMaxProgresstime = Math.max(1, this.mMaxProgresstime);
this.mOutputItems = new ItemStack[]{tRecipe.getOutput(0), tRecipe.getOutput(1)};