From 555fed862e8bd89bef0180d27c60dcfaf2eb92d2 Mon Sep 17 00:00:00 2001 From: drobbins329 Date: Sat, 14 Aug 2021 11:20:29 -0400 Subject: [PATCH] Oops --- .../Entities/Interaction/SocketBaseCommand/SocketCommandBase.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Discord.Net.WebSocket/Entities/Interaction/SocketBaseCommand/SocketCommandBase.cs b/src/Discord.Net.WebSocket/Entities/Interaction/SocketBaseCommand/SocketCommandBase.cs index 9fd25ac5d..4dbadc552 100644 --- a/src/Discord.Net.WebSocket/Entities/Interaction/SocketBaseCommand/SocketCommandBase.cs +++ b/src/Discord.Net.WebSocket/Entities/Interaction/SocketBaseCommand/SocketCommandBase.cs @@ -32,7 +32,7 @@ namespace Discord.WebSocket new internal static SocketInteraction Create(DiscordSocketClient client, Model model, ISocketMessageChannel channel) { - var entity = new SocketSlashCommand(client, model, channel); + var entity = new SocketCommandBase(client, model, channel); entity.Update(model); return entity; }