diff --git a/Server/DiscordBot.cs b/Server/DiscordBot.cs index 8200569..b8b71d4 100644 --- a/Server/DiscordBot.cs +++ b/Server/DiscordBot.cs @@ -242,11 +242,6 @@ private void OnLoadSettings() Settings.DiscordTable oldSettings = localSettings; localSettings = Settings.Instance.Discord; - if (localSettings.CommandChannel == null) - logger.Warn("You probably should set your CommandChannel in settings.json"); - if (localSettings.AdminChannel == null) - logger.Warn("You probably should set your AdminChannel in settings.json"); - if (oldSettings.Token != localSettings.Token || oldSettings.AdminChannel != localSettings.AdminChannel || oldSettings.CommandChannel != localSettings.CommandChannel) { //start over fresh (there might be a more intelligent way to do this without restarting the bot if only the log/command channel changed, but I'm lazy. diff --git a/Server/Settings.cs b/Server/Settings.cs index f65889e..39f66a7 100644 --- a/Server/Settings.cs +++ b/Server/Settings.cs @@ -73,7 +73,7 @@ public class FlipTable { } public class DiscordTable { - public bool Enabled { get; set; } = true; + public bool Enabled { get; set; } = false; public string? Token { get; set; } public string Prefix { get; set; } = "$"; public string? CommandChannel { get; set; }