diff --git a/ScoreboardExt/Classes/ScoreboardExtRepInfo.uc b/ScoreboardExt/Classes/ScoreboardExtRepInfo.uc index 874b771..830061b 100644 --- a/ScoreboardExt/Classes/ScoreboardExtRepInfo.uc +++ b/ScoreboardExt/Classes/ScoreboardExtRepInfo.uc @@ -88,6 +88,10 @@ private reliable client function ClientApplySettings() } ClearTimer(nameof(ClientApplySettings)); + + if (class'ScoreboardStyleClient'.default.bEnabled) + Settings.Style = class'ScoreboardStyleClient'.static.Settings(); + SC.Settings = Settings; } diff --git a/ScoreboardExt/Classes/ScoreboardStyleClient.uc b/ScoreboardExt/Classes/ScoreboardStyleClient.uc index 70905fd..3c41d34 100644 --- a/ScoreboardExt/Classes/ScoreboardStyleClient.uc +++ b/ScoreboardExt/Classes/ScoreboardStyleClient.uc @@ -4,9 +4,9 @@ class ScoreboardStyleClient extends ScoreboardStyle `include(Build.uci) `include(Logger.uci) -var config bool bEnable; +var config bool bEnabled; defaultProperties { - bEnable=false + } \ No newline at end of file