返回提交历史
Modified
src/constants/gameToBuildVersion.ts
+1
-0
Modified
src/services/worldStateService.ts
+3
-0
XFEstudio/XFESpaceNinjaServer
chore: provide nora's mix vol. 5 for appropriate client versions (#3280)
Reviewed-on: https://onlyg.it/OpenWF/SpaceNinjaServer/pulls/3280 Co-authored-by: Sainan <63328889+Sainan@users.noreply.github.com> Co-committed-by: Sainan <63328889+Sainan@users.noreply.github.com>
1e053d30
代码差异
2 个文件
+4
-0
@@ -13,6 +13,7 @@ const gameToBuildVersion = {
13
13
"35.1.0": "2024.02.16.17.13",
14
14
"33.6.0": "2023.07.26.16.38",
15
15
"33.5.0": "2023.06.21.07.11",
16
"34.0.8": "2023.11.06.13.39",
16
17
"33.0.0": "2023.04.25.23.40",
17
18
"32.2.0": "2022.11.30.08.13",
18
19
"32.0.0": "2022.09.06.19.24",
@@ -4078,6 +4078,9 @@ export const getNightwaveSyndicateTag = (buildLabel: string | undefined): string
4078
4078
if (version_compare(buildLabel, gameToBuildVersion["35.5.9"]) >= 0) {
4079
4079
return "RadioLegionIntermission10Syndicate";
4080
4080
}
4081
if (version_compare(buildLabel, gameToBuildVersion["34.0.8"]) >= 0) {
4082
return "RadioLegionIntermission9Syndicate";
4083
}
4081
4084
return undefined;
4082
4085
};
4083
4086