fix: exclude open worlds from archon hunt
All checks were successful
Build / build (pull_request) Successful in 1m8s
Build / build (push) Successful in 1m56s

This commit is contained in:
Sainan 2025-05-10 12:58:35 +02:00
parent b201508fa1
commit 7df5e71e3c

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);