From af8a77dbc5073474bccf7f5f8ed949c851986e09 Mon Sep 17 00:00:00 2001 From: Casino Boyale Date: Sun, 17 Jun 2018 12:49:21 +0100 Subject: [PATCH] I'm sure you're having as much fun as I am --- .../Entities/Channels/SocketGuildChannel.cs | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/Discord.Net.WebSocket/Entities/Channels/SocketGuildChannel.cs b/src/Discord.Net.WebSocket/Entities/Channels/SocketGuildChannel.cs index 61fb7c3b2..43cc26f6d 100644 --- a/src/Discord.Net.WebSocket/Entities/Channels/SocketGuildChannel.cs +++ b/src/Discord.Net.WebSocket/Entities/Channels/SocketGuildChannel.cs @@ -118,7 +118,9 @@ namespace Discord.WebSocket /// The user you want the overwrite permission to apply to. /// The overwrite permission you want to add. /// The options to be used when sending the request. - /// An awaitable . + /// + /// An awaitable . + /// public async Task AddPermissionOverwriteAsync(IUser user, OverwritePermissions perms, RequestOptions options = null) { await ChannelHelper.AddPermissionOverwriteAsync(this, Discord, user, perms, options).ConfigureAwait(false); @@ -131,7 +133,9 @@ namespace Discord.WebSocket /// The role you want the overwrite permission to apply to. /// The overwrite permission you want to add. /// The options to be used when sending the request. - /// An awaitable . + /// + /// An awaitable . + /// public async Task AddPermissionOverwriteAsync(IRole role, OverwritePermissions perms, RequestOptions options = null) { await ChannelHelper.AddPermissionOverwriteAsync(this, Discord, role, perms, options).ConfigureAwait(false);