fix: exclude open worlds from archon hunt (#2054)
Some checks failed
Build / build (push) Has been cancelled
Build Docker image / docker (push) Has been cancelled

Closes #2048

Reviewed-on: #2054
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-10 19:12:34 -07:00 committed by Sainan
parent d5297d3547
commit 2521733e55

View File

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