From 9c1ba175372cb3bb1de732009c9bb7a33fbfde8c Mon Sep 17 00:00:00 2001 From: Sainan <63328889+Sainan@users.noreply.github.com> Date: Mon, 10 Nov 2025 23:51:13 -0800 Subject: [PATCH] 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> --- src/services/worldStateService.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/services/worldStateService.ts b/src/services/worldStateService.ts index decf7019..4d1b96f5 100644 --- a/src/services/worldStateService.ts +++ b/src/services/worldStateService.ts @@ -3819,6 +3819,12 @@ export const getNightwaveSyndicateTag = (buildLabel: string | undefined): string if (version_compare(buildLabel, "2025.02.05.11.19") >= 0) { return "RadioLegionIntermission12Syndicate"; } + if (version_compare(buildLabel, "2024.08.21.20.02") >= 0) { + return "RadioLegionIntermission11Syndicate"; + } + if (version_compare(buildLabel, "2024.04.29.11.14") >= 0) { + return "RadioLegionIntermission10Syndicate"; + } return undefined; };