fix: exclude railjack missions from archon hunt
All checks were successful
Build / build (pull_request) Successful in 55s
Build / build (push) Successful in 1m28s

This commit is contained in:
Sainan 2025-05-07 04:09:04 +02:00
parent bb606f3a95
commit 5bb806c06d

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