Adds settings (#126)

This commit is contained in:
Kamron Batman 2020-05-02 23:41:30 -07:00 • committed by GitHub
parent 8028a85ffe
commit f336a56364
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
17 changed files with 229 additions and 99 deletions

View file

@ -8,8 +8,12 @@ namespace Server.Misc
{
public class TestCenter
{
private const bool m_Enabled = false;
public static bool Enabled => m_Enabled;
public static bool Enabled { get; private set; }
public static void Configure()
{
Enabled = ServerConfiguration.GetOrUpdateSetting("testCenter.enabled", false);
}
public static void Initialize()
{