Nuget package updates

- discord
- changes InteractiveBase to ModuleBase
This commit is contained in:
Brett Hewitson 2022-06-21 23:44:14 +10:00
parent f416b5cd78
commit e12fd0e6e9
5 changed files with 19 additions and 15 deletions

View file

@ -1,7 +1,6 @@
using System;
using System.Threading.Tasks;
using Discord;
using Discord.Addons.Interactive;
using Discord.Commands;
using ServerManagerTool.DiscordBot.Delegates;
using ServerManagerTool.DiscordBot.Enums;
@ -10,7 +9,7 @@ using ServerManagerTool.DiscordBot.Interfaces;
namespace ServerManagerTool.DiscordBot.Modules
{
[Name("Server Commands")]
public sealed class ServerCommandModule : InteractiveBase
public sealed class ServerCommandModule : ModuleBase<SocketCommandContext>
{
private const int COMMAND_RESPONSE_DELAY = 500;