Decrease speed of by 3 ticks electrical furnace when using 4 overclockers
This commit is contained in:
parent
6cd98727a8
commit
cbc302ff48
1 changed files with 1 additions and 1 deletions
|
@ -155,7 +155,7 @@ public class TileElectricFurnace extends TilePowerAcceptor
|
|||
if (canUseEnergy(getEuPerTick(this.cost))) {
|
||||
this.useEnergy(getEuPerTick(this.cost));
|
||||
this.progress++;
|
||||
if (this.progress >= Math.max((int) (fuelScale * (1.0 - getSpeedMultiplier())), 2)) {
|
||||
if (this.progress >= Math.max((int) (fuelScale * (1.0 - getSpeedMultiplier())), 5)) {
|
||||
this.progress = 0;
|
||||
this.cookItems();
|
||||
updateInventory = true;
|
||||
|
|
Loading…
Add table
Reference in a new issue