diff --git a/src/Discord.Net.Core/Entities/Channels/ITextChannel.cs b/src/Discord.Net.Core/Entities/Channels/ITextChannel.cs index d1b2465ad..243eb4be3 100644 --- a/src/Discord.Net.Core/Entities/Channels/ITextChannel.cs +++ b/src/Discord.Net.Core/Entities/Channels/ITextChannel.cs @@ -31,12 +31,20 @@ namespace Discord /// /// The messages to be bulk-deleted. /// The options to be used when sending the request. + /// + /// > [!IMPORTANT] + /// > This method can only remove messages that are posted within 14 days! + /// Task DeleteMessagesAsync(IEnumerable messages, RequestOptions options = null); /// /// Bulk-deletes multiple messages. /// /// The IDs of the messages to be bulk-deleted. /// The options to be used when sending the request. + /// + /// > [!IMPORTANT] + /// > This method can only remove messages that are posted within 14 days! + /// Task DeleteMessagesAsync(IEnumerable messageIds, RequestOptions options = null); ///