From 8791bc55f508523f04406801db8fa47051b0988f Mon Sep 17 00:00:00 2001 From: Kwoth Date: Fri, 3 Feb 2017 10:01:29 +0100 Subject: [PATCH] Just a bit better formatting. --- .../Modules/Administration/Commands/SelfCommands.cs | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/NadekoBot/Modules/Administration/Commands/SelfCommands.cs b/src/NadekoBot/Modules/Administration/Commands/SelfCommands.cs index e787b83a..137fa10c 100644 --- a/src/NadekoBot/Modules/Administration/Commands/SelfCommands.cs +++ b/src/NadekoBot/Modules/Administration/Commands/SelfCommands.cs @@ -173,14 +173,10 @@ namespace NadekoBot.Modules.Administration [OwnerOnly] public async Task ReloadImages() { - var msg = await Context.Channel.SendMessageAsync("Reloading Images...").ConfigureAwait(false); var sw = Stopwatch.StartNew(); await NadekoBot.Images.Reload().ConfigureAwait(false); sw.Stop(); - await msg.ModifyAsync(x => - { - x.Content = "✅ Images reloaded."; - }).ConfigureAwait(false); + await Context.Channel.SendConfirmAsync("Images Reloaded").ConfigureAwait(false); } private static UserStatus SettableUserStatusToUserStatus(SettableUserStatus sus)