Merge pull request #7 from GTNewHorizons/MultiSmelter-Rebalance
Less power consumption for SUPERCONDUCTORs
This commit is contained in:
commit
4c76b14530
1 changed files with 1 additions and 1 deletions
|
@ -76,7 +76,7 @@ public class GT_MetaTileEntity_MultiFurnace
|
|||
this.mEfficiency = (10000 - (getIdealStatus() - getRepairStatus()) * 1000);
|
||||
this.mEfficiencyIncrease = 10000;
|
||||
|
||||
this.mEUt = (-5 * (1 << tTier - 1) * (1 << tTier - 1) * this.mLevel);
|
||||
this.mEUt = (-5 * (1 << tTier - 1) * (1 << tTier - 1) * Math.min(this.mLevel,8));
|
||||
this.mMaxProgresstime = Math.max(1, 512 / (1 << tTier - 1));
|
||||
}
|
||||
updateSlots();
|
||||
|
|
Loading…
Reference in a new issue