Tweak power output of fusion reactor, closes #1521
This commit is contained in:
parent
0536ef08a0
commit
354a80572c
1 changed files with 2 additions and 1 deletions
|
@ -271,7 +271,8 @@ public class TileFusionControlComputer extends TilePowerAcceptor
|
|||
|
||||
@Override
|
||||
public double getPowerMultiplier() {
|
||||
return size -5;
|
||||
double calc = (1F/2F) * Math.pow(size -5, 1.8);
|
||||
return Math.max(Math.round(calc * 100D) / 100D, 1D);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in a new issue