chore: automatically use nora's mix 6 & 7 in respective versions
All checks were successful
Build / build (pull_request) Successful in 4m28s

This commit is contained in:
2025-11-10 22:14:14 +01:00
parent f63954c796
commit 989cc0c94a

View File

@@ -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;
};