fix: exclude railjack missions from archon hunt (#2002)
Some checks failed
Build / build (push) Has been cancelled
Build Docker image / docker (push) Has been cancelled

Closes #2001

Reviewed-on: #2002
Co-authored-by: Sainan <63328889+Sainan@users.noreply.github.com>
Co-committed-by: Sainan <63328889+Sainan@users.noreply.github.com>
This commit is contained in:
Sainan 2025-05-07 20:13:45 -07:00 committed by Sainan
parent bb606f3a95
commit 58549c1488

View File

@ -1209,7 +1209,8 @@ export const getLiteSortie = (week: number): ILiteSortie => {
value.factionIndex !== undefined && value.factionIndex !== undefined &&
value.factionIndex < 2 && value.factionIndex < 2 &&
!isArchwingMission(value) && !isArchwingMission(value) &&
value.missionIndex != 0 // Exclude MT_ASSASSINATION value.missionIndex != 0 && // Exclude MT_ASSASSINATION
value.missionIndex != 32 // Exclude railjack
) { ) {
nodes.push(key); nodes.push(key);
} }