.NET Format Style Fixes

This commit is contained in:
refringe
2025-06-18 17:09:20 +00:00
committed by Format Bot
parent ca0a7d6345
commit 6e01428b2b
774 changed files with 23507 additions and 40003 deletions
@@ -41,15 +41,26 @@ public class ClientLogCallbacks(
? _localisationService.GetText("release-beta-disclaimer-mods-enabled")
: _localisationService.GetText("release-beta-disclaimer");
data.BetaDisclaimerAcceptText = _localisationService.GetText("release-beta-disclaimer-accept");
data.BetaDisclaimerAcceptText = _localisationService.GetText(
"release-beta-disclaimer-accept"
);
data.ServerModsLoadedText = _localisationService.GetText("release-server-mods-loaded");
data.ServerModsLoadedDebugText = _localisationService.GetText("release-server-mods-debug-message");
data.ServerModsLoadedDebugText = _localisationService.GetText(
"release-server-mods-debug-message"
);
data.ClientModsLoadedText = _localisationService.GetText("release-plugins-loaded");
data.ClientModsLoadedDebugText = _localisationService.GetText("release-plugins-loaded-debug-message");
data.IllegalPluginsLoadedText = _localisationService.GetText("release-illegal-plugins-loaded");
data.IllegalPluginsExceptionText = _localisationService.GetText("release-illegal-plugins-exception");
data.ClientModsLoadedDebugText = _localisationService.GetText(
"release-plugins-loaded-debug-message"
);
data.IllegalPluginsLoadedText = _localisationService.GetText(
"release-illegal-plugins-loaded"
);
data.IllegalPluginsExceptionText = _localisationService.GetText(
"release-illegal-plugins-exception"
);
data.ReleaseSummaryText = _localisationService.GetText("release-summary");
data.IsBeta = ProgramStatics.ENTRY_TYPE() is EntryType.BLEEDING_EDGE or EntryType.BLEEDING_EDGE_MODS;
data.IsBeta =
ProgramStatics.ENTRY_TYPE() is EntryType.BLEEDING_EDGE or EntryType.BLEEDING_EDGE_MODS;
data.IsModdable = ProgramStatics.MODS();
data.IsModded = _loadedMods.Count > 0;