From 4320e1177e794fea3d39087281963b0e1a910088 Mon Sep 17 00:00:00 2001 From: samvaio Date: Sun, 20 Nov 2016 15:36:31 +0530 Subject: [PATCH] Adds and fixes - added fullstops to deafen response. - added word "voice" to make deletion of voice channel using `.dvch` more clear. --- src/NadekoBot/Modules/Administration/Administration.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/NadekoBot/Modules/Administration/Administration.cs b/src/NadekoBot/Modules/Administration/Administration.cs index 7c22f2ad..455f43da 100644 --- a/src/NadekoBot/Modules/Administration/Administration.cs +++ b/src/NadekoBot/Modules/Administration/Administration.cs @@ -540,7 +540,7 @@ namespace NadekoBot.Modules.Administration { await u.ModifyAsync(usr=>usr.Deaf = true).ConfigureAwait(false); } - await channel.SendMessageAsync("🔇 **Deafen** successful").ConfigureAwait(false); + await channel.SendMessageAsync("🔇 **Deafen** successful.").ConfigureAwait(false); } catch { @@ -563,7 +563,7 @@ namespace NadekoBot.Modules.Administration { await u.ModifyAsync(usr=> usr.Deaf = false).ConfigureAwait(false); } - await channel.SendMessageAsync("🔊 **Undeafen** successful").ConfigureAwait(false); + await channel.SendMessageAsync("🔊 **Undeafen** successful.").ConfigureAwait(false); } catch { @@ -577,7 +577,7 @@ namespace NadekoBot.Modules.Administration public async Task DelVoiChanl(IUserMessage umsg, [Remainder] IVoiceChannel voiceChannel) { await voiceChannel.DeleteAsync().ConfigureAwait(false); - await umsg.Channel.SendMessageAsync($"❗️Removed channel **{voiceChannel.Name}**.").ConfigureAwait(false); + await umsg.Channel.SendMessageAsync($"❗️Removed voice channel **{voiceChannel.Name}** successfully.").ConfigureAwait(false); } [NadekoCommand, Usage, Description, Aliases]