From 7df5e71e3c866d01a8f35a25f6638e3214e9f13f Mon Sep 17 00:00:00 2001 From: Sainan <63328889+Sainan@users.noreply.github.com> Date: Sat, 10 May 2025 12:58:35 +0200 Subject: [PATCH] fix: exclude open worlds from archon hunt --- src/services/worldStateService.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/services/worldStateService.ts b/src/services/worldStateService.ts index 3d4821a1..fa125b8a 100644 --- a/src/services/worldStateService.ts +++ b/src/services/worldStateService.ts @@ -1178,6 +1178,8 @@ export const getLiteSortie = (week: number): ILiteSortie => { value.factionIndex < 2 && !isArchwingMission(value) && value.missionIndex != 0 && // Exclude MT_ASSASSINATION + value.missionIndex != 23 && // Exclude junctions + value.missionIndex != 28 && // Exclude open worlds value.missionIndex != 32 // Exclude railjack ) { nodes.push(key);