Fix up BLEEDING_EDGE not being semver compliant

This commit is contained in:
Archangel
2025-08-08 22:47:56 +02:00
parent 59e164b740
commit f3134dec59
4 changed files with 6 additions and 6 deletions
@@ -50,7 +50,7 @@ public class ClientLogCallbacks(
data.IllegalPluginsLoadedText = serverLocalisationService.GetText("release-illegal-plugins-loaded");
data.IllegalPluginsExceptionText = serverLocalisationService.GetText("release-illegal-plugins-exception");
data.ReleaseSummaryText = serverLocalisationService.GetText("release-summary");
data.IsBeta = ProgramStatics.ENTRY_TYPE() is EntryType.BLEEDING_EDGE or EntryType.BLEEDING_EDGE_MODS;
data.IsBeta = ProgramStatics.ENTRY_TYPE() is EntryType.BLEEDINGEDGE or EntryType.BLEEDINGEDGEMODS;
data.IsModdable = ProgramStatics.MODS();
data.IsModded = loadedMods.Count > 0;