From e602bbb7ab113df6d3f5b27b03bbf4bfa66dcbc0 Mon Sep 17 00:00:00 2001 From: samvaio Date: Wed, 23 Nov 2016 00:08:05 +0530 Subject: [PATCH] Update LogCommand.cs --- src/NadekoBot/Modules/Administration/Commands/LogCommand.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/NadekoBot/Modules/Administration/Commands/LogCommand.cs b/src/NadekoBot/Modules/Administration/Commands/LogCommand.cs index c48ae6ea..8c32f386 100644 --- a/src/NadekoBot/Modules/Administration/Commands/LogCommand.cs +++ b/src/NadekoBot/Modules/Administration/Commands/LogCommand.cs @@ -409,8 +409,8 @@ namespace NadekoBot.Modules.Administration { try { - var str = $@"🕔`{prettyCurrentTime}`👤`{msg.Author.Username}#{msg.Author.Discriminator}`**Message DELETED** #⃣ `{channel.Name}` -🗑 {msg.Resolve(userHandling: UserMentionHandling.NameAndDiscriminator)}"; + var str = $@"🕔`{prettyCurrentTime}`👤`{msg.Author.Username}#{msg.Author.Discriminator} `**Deleted Message** #⃣ `{channel.Name}` +🗑 `{msg.Resolve(userHandling: UserMentionHandling.NameAndDiscriminator)}`"; if (msg.Attachments.Any()) str += $"{Environment.NewLine}`Attachements`: {string.Join(", ", msg.Attachments.Select(a => a.ProxyUrl))}"; await logChannel.SendMessageAsync(str.SanitizeMentions()).ConfigureAwait(false);