From bb87e81f9dc424ac16695339ed545e4f1119a869 Mon Sep 17 00:00:00 2001 From: Restart2008 Date: Sat, 25 Oct 2025 21:21:32 -0700 Subject: [PATCH] Feat: Update MIRV fixed travel time to 40 ticks Changed the MIRV_FIXED_TRAVEL_TIME constant from 20 to 40 ticks in src/core/execution/MIRVExecution.ts to slow down MIRV travel. --- 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 32b55a032..4492b15b0 100644 --- a/src/core/execution/MIRVExecution.ts +++ b/src/core/execution/MIRVExecution.ts @@ -22,7 +22,7 @@ export class MirvExecution implements Execution { private mirvRange = 1500; private warheadCount = 350; - private MIRV_FIXED_TRAVEL_TIME = 20; // Ticks + private MIRV_FIXED_TRAVEL_TIME = 40; // Ticks private random: PseudoRandom;