diff --git a/src/core/execution/FakeHumanExecution.ts b/src/core/execution/FakeHumanExecution.ts index 358164931..18b84bc3f 100644 --- a/src/core/execution/FakeHumanExecution.ts +++ b/src/core/execution/FakeHumanExecution.ts @@ -312,7 +312,7 @@ export class FakeHumanExecution implements Execution { } if (!this.player.canBuild(UnitType.AtomBomb, tile)) continue; const value = this.nukeTileScore(tile, silos, structures); - if (value > bestTile) { + if (value > bestValue) { bestTile = tile; bestValue = value; }