From 731be0d5e339f90b134a86d81e1e764d9961f319 Mon Sep 17 00:00:00 2001 From: Sainan <63328889+Sainan@users.noreply.github.com> Date: Mon, 21 Apr 2025 22:06:39 -0700 Subject: [PATCH] fix: exclude MT_ARENA from sortie node options (#1769) Fixes #1764 Reviewed-on: https://onlyg.it/OpenWF/SpaceNinjaServer/pulls/1769 Co-authored-by: Sainan <63328889+Sainan@users.noreply.github.com> Co-committed-by: Sainan <63328889+Sainan@users.noreply.github.com> --- src/services/worldStateService.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/services/worldStateService.ts b/src/services/worldStateService.ts index d8cd0c3c..2ca13620 100644 --- a/src/services/worldStateService.ts +++ b/src/services/worldStateService.ts @@ -232,6 +232,7 @@ const pushSortieIfRelevant = (out: ISortie[], day: number): void => { value.missionIndex != 0 && // Exclude MT_ASSASSINATION value.missionIndex != 5 && // Exclude MT_CAPTURE value.missionIndex != 21 && // Exclude MT_PURIFY + value.missionIndex != 22 && // Exclude MT_ARENA value.missionIndex != 23 && // Exclude MT_JUNCTION value.missionIndex <= 28 ) {