fix: exclude railjack missions from archon hunt #2002

Merged
Sainan merged 1 commits from litesortie-fix into main 2025-05-07 20:13:46 -07:00

View File

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