From 62539f039109976ea64c52ec7a8df055b47e31e4 Mon Sep 17 00:00:00 2001 From: Still Hsu <5843208+Still34@users.noreply.github.com> Date: Fri, 22 May 2020 11:42:29 +0800 Subject: [PATCH] Move bulk deletes remarks from to --- .../DiscordSocketConfig.cs | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/src/Discord.Net.WebSocket/DiscordSocketConfig.cs b/src/Discord.Net.WebSocket/DiscordSocketConfig.cs index 6b0c5ebc4..c374d9e0d 100644 --- a/src/Discord.Net.WebSocket/DiscordSocketConfig.cs +++ b/src/Discord.Net.WebSocket/DiscordSocketConfig.cs @@ -109,14 +109,18 @@ namespace Discord.WebSocket /// /// Gets or sets the behavior for on bulk deletes. - /// - /// If true, the event will not be raised for bulk deletes, and - /// only the will be raised. - /// - /// If false, both events will be raised. - /// - /// If unset, both events will be raised, but a warning will be raised the first time a bulk delete event is received. /// + /// + /// + /// If true, the event will not be raised for bulk + /// deletes, and only the will be raised. If false + /// , both events will be raised. + /// + /// + /// If unset, both events will be raised, but a warning will be raised the first time a bulk delete event is + /// received. + /// + /// public bool? ExclusiveBulkDelete { get; set; } = null; ///