increase MIRV warhead distance, new psuedorand makes better spread

This commit is contained in:
evanpelle
2025-08-16 11:26:48 -07:00
parent 5fe199ae9e
commit 67ca96f4b7
+1 -1
View File
@@ -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;
}
}