fix: omit plains of eidolon from non-grineer sorties #2472

Merged
Sainan merged 1 commits from poe-fix into main 2025-07-11 21:15:50 -07:00
Showing only changes of commit d2a175587a - Show all commits

View File

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