From ee911f15698230be8933e1b4ff0140470a275339 Mon Sep 17 00:00:00 2001 From: calebco Date: Thu, 5 Mar 2026 09:15:30 -0600 Subject: [PATCH] updated SAM refire delay tick back to 0 game ticks. --- src/core/configuration/DefaultConfig.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/configuration/DefaultConfig.ts b/src/core/configuration/DefaultConfig.ts index 9a0056d79..15ea543a7 100644 --- a/src/core/configuration/DefaultConfig.ts +++ b/src/core/configuration/DefaultConfig.ts @@ -206,7 +206,7 @@ export class DefaultConfig implements Config { samRefireDelayTicks(): number { // Beta testing: adjust this constant to tune the delay before a SAM can // refire at a nuke whose interceptor was destroyed. 0 = instant refire. - return 5; + return 0; } SiloCooldown(): number { return 75;