From a1eac34c715205495408f0503d9233924019a180 Mon Sep 17 00:00:00 2001 From: Sainan <63328889+Sainan@users.noreply.github.com> Date: Thu, 24 Apr 2025 21:16:30 +0200 Subject: [PATCH 1/2] fix: exclude some more nodes from syndicate missions --- src/services/worldStateService.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/services/worldStateService.ts b/src/services/worldStateService.ts index f726e603..332dbfc0 100644 --- a/src/services/worldStateService.ts +++ b/src/services/worldStateService.ts @@ -186,7 +186,9 @@ const pushSyndicateMissions = ( for (const [key, value] of Object.entries(ExportRegions)) { if ( !isArchwingMission(value) && - value.systemIndex != 23 && // no 1999 stuff + !value.questReq && // Exclude zariman, murmor, and 1999 stuff + !value.hidden && // Exclude the index + !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 -- 2.47.2 From ea3a4a35340c1deffee94245925a0983fc71abee Mon Sep 17 00:00:00 2001 From: Sainan <63328889+Sainan@users.noreply.github.com> Date: Fri, 25 Apr 2025 09:48:44 +0200 Subject: [PATCH 2/2] exclude MT_LANDSCAPE --- src/services/worldStateService.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/services/worldStateService.ts b/src/services/worldStateService.ts index 332dbfc0..9178e48c 100644 --- a/src/services/worldStateService.ts +++ b/src/services/worldStateService.ts @@ -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); } -- 2.47.2