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

chore: automatically use nora's mix 6 & 7 in respective versions (#3016)

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

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

代码差异

1 个文件 +6 -0
Modified src/services/worldStateService.ts +6 -0
@@ -3819,6 +3819,12 @@ export const getNightwaveSyndicateTag = (buildLabel: string | undefined): string
3819 3819 if (version_compare(buildLabel, "2025.02.05.11.19") >= 0) {
3820 3820 return "RadioLegionIntermission12Syndicate";
3821 3821 }
3822 if (version_compare(buildLabel, "2024.08.21.20.02") >= 0) {
3823 return "RadioLegionIntermission11Syndicate";
3824 }
3825 if (version_compare(buildLabel, "2024.04.29.11.14") >= 0) {
3826 return "RadioLegionIntermission10Syndicate";
3827 }
3822 3828 return undefined;
3823 3829 };
3824 3830