fix: exclude open worlds from archon hunt #2054

Merged
Sainan merged 1 commits from litesortie-fix into main 2025-05-10 19:12:35 -07:00

View File

@ -1178,6 +1178,8 @@ export const getLiteSortie = (week: number): ILiteSortie => {
value.factionIndex < 2 && value.factionIndex < 2 &&
!isArchwingMission(value) && !isArchwingMission(value) &&
value.missionIndex != 0 && // Exclude MT_ASSASSINATION value.missionIndex != 0 && // Exclude MT_ASSASSINATION
value.missionIndex != 23 && // Exclude junctions
value.missionIndex != 28 && // Exclude open worlds
value.missionIndex != 32 // Exclude railjack value.missionIndex != 32 // Exclude railjack
) { ) {
nodes.push(key); nodes.push(key);