XFE Git
XFE Studio Git
Git 首页 全局搜索
XFE 主站 文档 NuGet

XFESpaceNinjaServer

A simple server for a small space ninja game

公开
关注 0 Fork 0 Star 0
返回提交历史

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
Sainan <63328889+Sainan@users.noreply.github.com>
提交于

代码差异

1 个文件 +2 -1
Modified src/services/worldStateService.ts +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 }