返回提交历史
Modified
src/services/worldStateService.ts
+2
-1
XFEstudio/XFESpaceNinjaServer
fix: omit plains of eidolon from non-grineer sorties (#2472)
Closes #2470 Reviewed-on: https://onlyg.it/OpenWF/SpaceNinjaServer/pulls/2472 Co-authored-by: Sainan <63328889+Sainan@users.noreply.github.com> Co-committed-by: Sainan <63328889+Sainan@users.noreply.github.com>
83881854
代码差异
1 个文件
+2
-1
@@ -261,7 +261,8 @@ export const getSortie = (day: number): ISortie => {
261
261
if (
262
262
sortieFactionToSystemIndexes[sortieBossToFaction[boss]].includes(value.systemIndex) &&
263
263
sortieFactionToFactionIndexes[sortieBossToFaction[boss]].includes(value.factionIndex!) &&
264
key in sortieTilesets
264
key in sortieTilesets &&
265
(key != "SolNode228" || sortieBossToFaction[boss] == "FC_GRINEER") // PoE does not work for non-infested enemies
265
266
) {
266
267
nodes.push(key);
267
268
}