From 436cbae8170f178b8fc0ad58f99061f1adbb4b45 Mon Sep 17 00:00:00 2001 From: quin lynch Date: Sun, 19 Sep 2021 05:24:34 -0300 Subject: [PATCH] Remove obsolete method from interaction base --- .../Entities/Interaction/SocketInteraction.cs | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/Discord.Net.WebSocket/Entities/Interaction/SocketInteraction.cs b/src/Discord.Net.WebSocket/Entities/Interaction/SocketInteraction.cs index 8a13738e2..4c98be7ee 100644 --- a/src/Discord.Net.WebSocket/Entities/Interaction/SocketInteraction.cs +++ b/src/Discord.Net.WebSocket/Entities/Interaction/SocketInteraction.cs @@ -204,15 +204,6 @@ namespace Discord.WebSocket return RestInteractionMessage.Create(this.Discord, model, this.Token, this.Channel); } - /// - /// Acknowledges this interaction. - /// - /// - /// A task that represents the asynchronous operation of acknowledging the interaction. - /// - [Obsolete("This method deprecated, please use DeferAsync instead")] - public Task AcknowledgeAsync(RequestOptions options = null) => DeferAsync(options: options); - /// /// Acknowledges this interaction. ///