From 4f24ea6d1b92bc776b1eb2fa75788538ced15b5b Mon Sep 17 00:00:00 2001 From: Casino Boyale Date: Sun, 17 Jun 2018 12:44:56 +0100 Subject: [PATCH] Try try try again --- .../Entities/Channels/SocketGuildChannel.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Discord.Net.WebSocket/Entities/Channels/SocketGuildChannel.cs b/src/Discord.Net.WebSocket/Entities/Channels/SocketGuildChannel.cs index 02037bc3c..61fb7c3b2 100644 --- a/src/Discord.Net.WebSocket/Entities/Channels/SocketGuildChannel.cs +++ b/src/Discord.Net.WebSocket/Entities/Channels/SocketGuildChannel.cs @@ -118,6 +118,7 @@ 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 . public async Task AddPermissionOverwriteAsync(IUser user, OverwritePermissions perms, RequestOptions options = null) { await ChannelHelper.AddPermissionOverwriteAsync(this, Discord, user, perms, options).ConfigureAwait(false); @@ -130,6 +131,7 @@ 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 . public async Task AddPermissionOverwriteAsync(IRole role, OverwritePermissions perms, RequestOptions options = null) { await ChannelHelper.AddPermissionOverwriteAsync(this, Discord, role, perms, options).ConfigureAwait(false);