mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
Parentheses fix #69420
This commit is contained in:
parent
b82597c0e3
commit
a18820e4b5
@ -199,7 +199,7 @@ public abstract class TileEntityOilDrillBase extends TileEntityMachineBase imple
|
||||
|
||||
public int getDelayEff() {
|
||||
int delay = getDelay();
|
||||
return Math.max((delay - (delay / 4 * this.speedLevel) + (delay / 10 * this.energyLevel) / this.overLevel), 1);
|
||||
return Math.max((delay - (delay / 4 * this.speedLevel) + (delay / 10 * this.energyLevel)) / this.overLevel, 1);
|
||||
}
|
||||
|
||||
public abstract int getPowerReq();
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user