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

SpaceNinjaServer

A simple server for a small space ninja game

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

XFEstudio/SpaceNinjaServer

fix: exclude open worlds from archon hunt (#2054)

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

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

代码差异

1 个文件 +2 -0
Modified src/services/worldStateService.ts +2 -0
@@ -1178,6 +1178,8 @@ export const getLiteSortie = (week: number): ILiteSortie => {
1178 1178 value.factionIndex < 2 &&
1179 1179 !isArchwingMission(value) &&
1180 1180 value.missionIndex != 0 && // Exclude MT_ASSASSINATION
1181 value.missionIndex != 23 && // Exclude junctions
1182 value.missionIndex != 28 && // Exclude open worlds
1181 1183 value.missionIndex != 32 // Exclude railjack
1182 1184 ) {
1183 1185 nodes.push(key);