From a47c6892c35aca1c946705ed75ac77d1ab9dfb70 Mon Sep 17 00:00:00 2001 From: jvyden Date: Fri, 14 Jan 2022 22:30:29 -0500 Subject: [PATCH] Fix some config options not being shown properly --- ProjectLighthouse/Types/Settings/ServerSettings.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/ProjectLighthouse/Types/Settings/ServerSettings.cs b/ProjectLighthouse/Types/Settings/ServerSettings.cs index 55fff631..c3b7af60 100644 --- a/ProjectLighthouse/Types/Settings/ServerSettings.cs +++ b/ProjectLighthouse/Types/Settings/ServerSettings.cs @@ -12,7 +12,7 @@ namespace LBPUnion.ProjectLighthouse.Types.Settings public class ServerSettings { - public const int CurrentConfigVersion = 15; // MUST BE INCREMENTED FOR EVERY CONFIG CHANGE! + public const int CurrentConfigVersion = 16; // MUST BE INCREMENTED FOR EVERY CONFIG CHANGE! static ServerSettings() { if (ServerStatics.IsUnitTesting) return; // Unit testing, we don't want to read configurations here since the tests will provide their own @@ -103,11 +103,11 @@ namespace LBPUnion.ProjectLighthouse.Types.Settings public string GoogleAnalyticsId { get; set; } = ""; - public bool BlockDeniedUsers = true; + public bool BlockDeniedUsers { get; set; } = true; - public bool BooingEnabled = true; + public bool BooingEnabled { get; set; } = true; - public bool VitaCreateMode = false; + public bool VitaCreateMode { get; set; } = false; #region Meta @@ -122,4 +122,4 @@ namespace LBPUnion.ProjectLighthouse.Types.Settings #endregion Meta } -} \ No newline at end of file +}