From fbf345ae026f7c6d0d42910f3e5cb2481af4217d Mon Sep 17 00:00:00 2001 From: Kwoth Date: Tue, 27 Dec 2016 06:27:45 +0100 Subject: [PATCH] asterix asterix asterix --- src/NadekoBot/Modules/Administration/Commands/LogCommand.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/NadekoBot/Modules/Administration/Commands/LogCommand.cs b/src/NadekoBot/Modules/Administration/Commands/LogCommand.cs index 3f750878..78a813fc 100644 --- a/src/NadekoBot/Modules/Administration/Commands/LogCommand.cs +++ b/src/NadekoBot/Modules/Administration/Commands/LogCommand.cs @@ -110,15 +110,15 @@ namespace NadekoBot.Modules.Administration string str = null; if (beforeVch?.Guild == afterVch?.Guild) { - str = $"**{usr.Username}** moved from **{beforeVch.Name}** to **{afterVch.Name}**"; + str = $"{usr.Username} moved from {beforeVch.Name} to {afterVch.Name}"; } else if (beforeVch == null) { - str = $"**{usr.Username}** has joined **{afterVch.Name}**"; + str = $"{usr.Username} has joined {afterVch.Name}"; } else if (afterVch == null) { - str = $"**{usr.Username}** has left **{beforeVch.Name}**"; + str = $"{usr.Username} has left {beforeVch.Name}"; } Task.Run(async () =>