From 67ca96f4b75abbbeefc56afe64ca84d672e5cae4 Mon Sep 17 00:00:00 2001 From: evanpelle Date: Sat, 16 Aug 2025 11:26:48 -0700 Subject: [PATCH] increase MIRV warhead distance, new psuedorand makes better spread --- src/core/execution/MIRVExecution.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/execution/MIRVExecution.ts b/src/core/execution/MIRVExecution.ts index 9a6075b68..7f5c1687f 100644 --- a/src/core/execution/MIRVExecution.ts +++ b/src/core/execution/MIRVExecution.ts @@ -169,7 +169,7 @@ export class MirvExecution implements Execution { private proximityCheck(tile: TileRef, taken: TileRef[]): boolean { for (const t of taken) { - if (this.mg.manhattanDist(tile, t) < 25) { + if (this.mg.manhattanDist(tile, t) < 55) { return true; } }