From 58549c1488142eb380077c10fe140adcb0825129 Mon Sep 17 00:00:00 2001 From: Sainan <63328889+Sainan@users.noreply.github.com> Date: Wed, 7 May 2025 20:13:45 -0700 Subject: [PATCH] fix: exclude railjack missions from archon hunt (#2002) Closes #2001 Reviewed-on: https://onlyg.it/OpenWF/SpaceNinjaServer/pulls/2002 Co-authored-by: Sainan <63328889+Sainan@users.noreply.github.com> Co-committed-by: Sainan <63328889+Sainan@users.noreply.github.com> --- src/services/worldStateService.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/services/worldStateService.ts b/src/services/worldStateService.ts index 60a64d83..a9535c9f 100644 --- a/src/services/worldStateService.ts +++ b/src/services/worldStateService.ts @@ -1209,7 +1209,8 @@ export const getLiteSortie = (week: number): ILiteSortie => { value.factionIndex !== undefined && value.factionIndex < 2 && !isArchwingMission(value) && - value.missionIndex != 0 // Exclude MT_ASSASSINATION + value.missionIndex != 0 && // Exclude MT_ASSASSINATION + value.missionIndex != 32 // Exclude railjack ) { nodes.push(key); }