返回提交历史
Modified
src/services/worldStateService.ts
+2
-1
XFEstudio/XFESpaceNinjaServer
fix: exclude SolNode63 from archon hunts (#2918)
Reviewed-on: https://onlyg.it/OpenWF/SpaceNinjaServer/pulls/2918 Co-authored-by: Sainan <63328889+Sainan@users.noreply.github.com> Co-committed-by: Sainan <63328889+Sainan@users.noreply.github.com>
be8e2fea
代码差异
1 个文件
+2
-1
@@ -3703,7 +3703,8 @@ export const getLiteSortie = (week: number): ILiteSortie => {
3703
3703
value.missionType != "MT_ASSASSINATION" &&
3704
3704
value.missionType != "MT_JUNCTION" &&
3705
3705
value.missionType != "MT_LANDSCAPE" &&
3706
value.missionType != "MT_RAILJACK"
3706
value.missionType != "MT_RAILJACK" &&
3707
key != "SolNode63" // This node uses GrineerForestTilesetCaves which only supports MT_CAPTURE, which is not valid for LiteSorties.
3707
3708
) {
3708
3709
nodes.push(key);
3709
3710
}