public static async void Unmute(string moderator, ITextChannel channel, SocketGuildUser user) { foreach (SocketTextChannel chan in user.Guild.TextChannels) { var guild = user.Guild; //Don't mess with channel permissions if nonmembers can't speak there anyway if (IsPublicChannel(chan)) { try { await chan.RemovePermissionOverwriteAsync(user, RequestOptions.Default); } catch { Processing.LogConsoleText($"Failed to unmute in {guild.Name}#{chan.Name.ToString()}", guild.Id); } } } var embed = Embeds.Unmute(user); await channel.SendMessageAsync("", embed : embed).ConfigureAwait(false); //Log the unmute in the bot-logs channel embed = Embeds.LogUnmute(moderator, channel, user); var botlog = await channel.Guild.GetTextChannelAsync(UserSettings.Channels.BotLogsId(user.Guild.Id)); if (botlog != null) { await botlog.SendMessageAsync("", embed : embed).ConfigureAwait(false); } }