Fix fusion reactor not using its starting power.
This commit is contained in:
parent
79c66e2349
commit
55b09da681
1 changed files with 1 additions and 1 deletions
|
@ -216,7 +216,7 @@ public class TileFusionControlComputer extends TilePowerAcceptor implements IToo
|
|||
this.hasStartedCrafting = true;
|
||||
}
|
||||
}
|
||||
if (this.crafingTickTime < this.finalTickTime) {
|
||||
if (hasStartedCrafting && this.crafingTickTime < this.finalTickTime) {
|
||||
this.crafingTickTime++;
|
||||
// Power gen
|
||||
if (this.currentRecipe.getEuTick() > 0) {
|
||||
|
|
Loading…
Reference in a new issue