diff --git a/src/core/execution/MIRVExecution.ts b/src/core/execution/MIRVExecution.ts index 3fef4c894..d06d9e23c 100644 --- a/src/core/execution/MIRVExecution.ts +++ b/src/core/execution/MIRVExecution.ts @@ -82,7 +82,7 @@ export class MirvExecution implements Execution { }); this.mg.stats().bombLaunch(this.player, this.targetPlayer, UnitType.MIRV); const x = Math.floor( - (this.mg.x(this.dst) + this.mg.x(this.mg.x(this.nuke.tile()))) / 2, + (this.mg.x(this.dst) + this.mg.x(this.nuke.tile())) / 2, ); const y = Math.max(0, this.mg.y(this.dst) - 500) + 50; this.separateDst = this.mg.ref(x, y);