Merge pull request #7 from GTNewHorizons/MultiSmelter-Rebalance

Less power consumption for SUPERCONDUCTORs
This commit is contained in:
Technus 2016-04-16 23:20:38 +02:00
commit 4c76b14530

View file

@ -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();