Feat: Update MIRV fixed travel time to 20 ticks

Changed the MIRV_FIXED_TRAVEL_TIME constant from 5 to 20 ticks in src/core/execution/MIRVExecution.ts.
This commit is contained in:
Restart2008
2025-10-25 21:09:18 -07:00
parent ec225671fd
commit 9097bcb1bb
+1 -1
View File
@@ -22,7 +22,7 @@ export class MirvExecution implements Execution {
private mirvRange = 1500;
private warheadCount = 350;
private MIRV_FIXED_TRAVEL_TIME = 5; // Ticks
private MIRV_FIXED_TRAVEL_TIME = 20; // Ticks
private random: PseudoRandom;