This commit is contained in:
TheUbMunster 2023-07-11 04:58:27 -06:00
parent 3b935d1f5b
commit f15ded0981
1 changed files with 5 additions and 2 deletions

View File

@ -136,7 +136,10 @@ public class DiscordBot
try
{
if (client != null)
client.StopAsync().Wait();
{
if (!client.StopAsync().Wait(60000))
logger.Warn("Tried to stop the discord bot, but attempt took >60 seconds, so it failed!");
}
client?.Dispose();
}
catch { /*lol (lmao)*/ }
@ -237,7 +240,7 @@ public class DiscordBot
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 LogChannel in settings.json");
logger.Warn("You probably should set your AdminChannel in settings.json");
if (oldSettings.Token != localSettings.Token || oldSettings.AdminChannel != localSettings.AdminChannel || oldSettings.CommandChannel != localSettings.CommandChannel)
{