From 67c3f0af36d798c23f2c673e0f2efa3674f1450d Mon Sep 17 00:00:00 2001 From: Sainan <63328889+Sainan@users.noreply.github.com> Date: Fri, 11 Jul 2025 17:49:05 +0200 Subject: [PATCH] fix: omit plains of eidolon from non-grineer sorties --- src/services/worldStateService.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/services/worldStateService.ts b/src/services/worldStateService.ts index 60db22b1..7f5268c9 100644 --- a/src/services/worldStateService.ts +++ b/src/services/worldStateService.ts @@ -261,7 +261,8 @@ export const getSortie = (day: number): ISortie => { if ( sortieFactionToSystemIndexes[sortieBossToFaction[boss]].includes(value.systemIndex) && sortieFactionToFactionIndexes[sortieBossToFaction[boss]].includes(value.factionIndex!) && - key in sortieTilesets + key in sortieTilesets && + (key != "SolNode228" || sortieBossToFaction[boss] == "FC_GRINEER") // PoE does not work for non-infested enemies ) { nodes.push(key); }