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.
This commit is contained in:
Restart2008
2025-10-25 21:21:32 -07:00
parent 9097bcb1bb
commit bb87e81f9d
+1 -1
View File
@@ -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;