Deleting plugins is now available

This commit is contained in:
2024-02-28 13:57:12 +02:00
parent 3c3c6a1301
commit fd9cd49844
17 changed files with 128 additions and 300 deletions

View File

@@ -4,7 +4,7 @@ using Discord;
using Discord.Commands;
using Discord.WebSocket;
using PluginManager.Others;
using PluginManager.UX;
namespace PluginManager.Bot;
@@ -91,6 +91,7 @@ public class Boot
while (!isReady) ;
}
private void CommonTasks()
{
if (client == null) return;
@@ -122,7 +123,7 @@ public class Boot
private Task Ready()
{
isReady = true;
UxHandler.ShowNotification("SethBot", "Seth Discord Bot is now up and running !").Wait();
// UxHandler.ShowNotification("SethBot", "Seth Discord Bot is now up and running !").Wait();
return Task.CompletedTask;
}