fix: exclude some more nodes from syndicate missions #1825

Merged
Sainan merged 2 commits from syndicate-exclude into main 2025-04-25 11:51:55 -07:00
Showing only changes of commit ea3a4a3534 - Show all commits

View File

@ -191,7 +191,7 @@ const pushSyndicateMissions = (
!value.darkSectorData && // Exclude dark sectors
value.missionIndex != 10 && // Exclude MT_PVP (for relays)
value.missionIndex != 23 && // no junctions
value.missionIndex <= 28 // no railjack or some such
value.missionIndex < 28 // no open worlds, railjack, etc
) {
nodeOptions.push(key);
}