diff --git a/src/NadekoBot/Modules/Utility/Utility.cs b/src/NadekoBot/Modules/Utility/Utility.cs index 90d60da9..cd348886 100644 --- a/src/NadekoBot/Modules/Utility/Utility.cs +++ b/src/NadekoBot/Modules/Utility/Utility.cs @@ -56,7 +56,7 @@ namespace NadekoBot.Modules.Utility var role = channel.Guild.Roles.Where(r => r.Name.ToUpperInvariant() == roleStr).FirstOrDefault(); if (role == null) continue; send += $"```css\n \n[{role.Name}]\n"; - send += string.Join(", ", channel.Guild.GetUsers().Where(u => u.Roles.Contains(role)).Select(u => u.ToString()) + "\n```"); + send += string.Join(", \n```", channel.Guild.GetUsers().Where(u => u.Roles.Contains(role)).Select(u => u.ToString())); } var usr = umsg.Author as IGuildUser; while (send.Length > 2000)