Created Settings Page and Home Page. Fixed load plugin error when the bot restarts

This commit is contained in:
2025-04-28 12:07:51 +03:00
parent 4ea7b25e4d
commit 7106a928d6
3 changed files with 235 additions and 5 deletions

View File

@@ -38,9 +38,9 @@ public class PluginLoader : IPluginLoader
public void SetDiscordClient(DiscordSocketClient discordSocketClient)
{
if (_DiscordClient is not null)
if (_DiscordClient is not null && discordSocketClient == _DiscordClient)
{
_Logger.Log("A client is already set. Please set the client only once.", this, LogType.Error);
_Logger.Log("A client is already set. Please set the client only once.", this, LogType.Warning);
return;
}