Fix EBF coil buff
This commit is contained in:
parent
f361360e06
commit
443806f73a
1 changed files with 5 additions and 5 deletions
|
@ -122,7 +122,7 @@ public class GT_MetaTileEntity_ElectricBlastFurnace
|
||||||
}
|
}
|
||||||
if(tHeatCapacityDivTiers>0){
|
if(tHeatCapacityDivTiers>0){
|
||||||
this.mEUt = (int) (this.mEUt * (Math.pow(0.95, tHeatCapacityDivTiers)));
|
this.mEUt = (int) (this.mEUt * (Math.pow(0.95, tHeatCapacityDivTiers)));
|
||||||
this.mMaxProgresstime /= (tHeatCapacityDivTiers>=i ? 4 : 2);
|
this.mMaxProgresstime /=(int)Math.pow((tHeatCapacityDivTiers+2)/ 2,2);//TODO CHECK
|
||||||
}
|
}
|
||||||
this.mMaxProgresstime = Math.max(1, this.mMaxProgresstime);
|
this.mMaxProgresstime = Math.max(1, this.mMaxProgresstime);
|
||||||
this.mOutputItems = new ItemStack[]{tRecipe.getOutput(0), tRecipe.getOutput(1)};
|
this.mOutputItems = new ItemStack[]{tRecipe.getOutput(0), tRecipe.getOutput(1)};
|
||||||
|
|
Loading…
Reference in a new issue