From d66ada4df66df608ac30eed3979a3fbe577eccb2 Mon Sep 17 00:00:00 2001 From: samvaio Date: Mon, 21 Nov 2016 06:15:07 +0530 Subject: [PATCH] Update Utility.cs --- src/NadekoBot/Modules/Utility/Utility.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/NadekoBot/Modules/Utility/Utility.cs b/src/NadekoBot/Modules/Utility/Utility.cs index 7d37550b..90d60da9 100644 --- a/src/NadekoBot/Modules/Utility/Utility.cs +++ b/src/NadekoBot/Modules/Utility/Utility.cs @@ -55,8 +55,8 @@ namespace NadekoBot.Modules.Utility { var role = channel.Guild.Roles.Where(r => r.Name.ToUpperInvariant() == roleStr).FirstOrDefault(); if (role == null) continue; - send += $"__**{role.Name}**__\n```css\n"; - send += string.Join(", ```", channel.Guild.GetUsers().Where(u => u.Roles.Contains(role)).Select(u => u.ToString())); + send += $"```css\n \n[{role.Name}]\n"; + send += string.Join(", ", channel.Guild.GetUsers().Where(u => u.Roles.Contains(role)).Select(u => u.ToString()) + "\n```"); } var usr = umsg.Author as IGuildUser; while (send.Length > 2000)