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

Merged
Sainan merged 1 commits from older-nw into main 2025-11-10 23:51:14 -08:00
Showing only changes of commit 989cc0c94a - Show all commits

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