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 SolNode15 from LiteSortie nodes (#3224)

Closes #3221 Reviewed-on: https://onlyg.it/OpenWF/SpaceNinjaServer/pulls/3224 Co-authored-by: Sainan <63328889+Sainan@users.noreply.github.com> Co-committed-by: Sainan <63328889+Sainan@users.noreply.github.com>

cbc7a442
Sainan <63328889+Sainan@users.noreply.github.com>
提交于

代码差异

1 个文件 +2 -1
Modified src/services/worldStateService.ts +2 -1
@@ -3985,7 +3985,8 @@ export const getLiteSortie = (week: number): ILiteSortie => {
3985 3985 value.missionType != "MT_JUNCTION" &&
3986 3986 value.missionType != "MT_LANDSCAPE" &&
3987 3987 value.missionType != "MT_RAILJACK" &&
3988 key != "SolNode63" // This node uses GrineerForestTilesetCaves which only supports MT_CAPTURE, which is not valid for LiteSorties.
3988 key != "SolNode63" && // This node uses GrineerForestTilesetCaves which only supports MT_CAPTURE, which is not valid for LiteSorties.
3989 key != "SolNode15" // This node uses GrineerGalleonTileset which seems to not support LiteSorties
3989 3990 ) {
3990 3991 nodes.push(key);
3991 3992 }