diff --git a/src/NadekoBot/Modules/Administration/Commands/LogCommand.cs b/src/NadekoBot/Modules/Administration/Commands/LogCommand.cs index cbb4ee08..293a2def 100644 --- a/src/NadekoBot/Modules/Administration/Commands/LogCommand.cs +++ b/src/NadekoBot/Modules/Administration/Commands/LogCommand.cs @@ -143,7 +143,7 @@ namespace NadekoBot.Modules.Administration else if (before.Roles.Count() > after.Roles.Count()) { var diffRoles = before.Roles.Where(r => !after.Roles.Contains(r)).Select(r => "`" + r.Name + "`"); - str += $"šŸ‘¤`{before.ToString()}` **User's Role Removed** šŸ†” `{before.Id}`\nāš”āž– **No Longer has {string.Join(", ", diffRoles)} role**"; + str += $"šŸ‘¤`{before.ToString()}` **User's Role Removed** šŸ†” `{before.Id}`\nāš”ā¬ {string.Join(", ", diffRoles)}, **Remaining:** `{string.Join(", ", user.Roles.Select(r => r.Name)).SanitizeMentions()}`"; } } else