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: Lua & Deimos sortie missions not appearing previously (#3112)

Closes #3110 - Grineer & Corpus faction on Lua - Infestation on Deimos Quickly checked which factions on Lua & Deimos based of past Live Sortie data. Idk why git shows the changes so weirdly here. Reviewed-on: https://onlyg.it/OpenWF/SpaceNinjaServer/pulls/3112 Reviewed-by: Sainan <63328889+sainan@users.noreply.github.com> Co-authored-by: Animan8000 <animan8000@noreply.localhost> Co-committed-by: Animan8000 <animan8000@noreply.localhost>

c4be6bb4
Animan8000 <animan8000@noreply.localhost>
提交于

代码差异

1 个文件 +3 -3
Modified src/services/worldStateService.ts +3 -3
@@ -85,9 +85,9 @@ const sortieBossToFaction: Record<TSortieBoss, TFaction> = {
85 85 };
86 86
87 87 const sortieFactionToSystemIndexes: Record<string, number[]> = {
88 FC_GRINEER: [0, 2, 3, 5, 6, 9, 11, 18],
89 FC_CORPUS: [1, 4, 7, 8, 12, 15],
90 FC_INFESTATION: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 15],
88 FC_GRINEER: [0, 2, 3, 5, 6, 9, 11, 17, 18],
89 FC_CORPUS: [1, 4, 7, 8, 12, 15, 17],
90 FC_INFESTATION: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 15, 16],
91 91 FC_OROKIN: [14]
92 92 };
93 93