From 85e5e5ba845e07158a415507f5e28e32f9f43ebd Mon Sep 17 00:00:00 2001 From: samvaio Date: Mon, 21 Nov 2016 06:26:12 +0530 Subject: [PATCH] Update Utility.cs --- src/NadekoBot/Modules/Utility/Utility.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/NadekoBot/Modules/Utility/Utility.cs b/src/NadekoBot/Modules/Utility/Utility.cs index cd348886..1b097a69 100644 --- a/src/NadekoBot/Modules/Utility/Utility.cs +++ b/src/NadekoBot/Modules/Utility/Utility.cs @@ -55,8 +55,9 @@ 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(", \n```", channel.Guild.GetUsers().Where(u => u.Roles.Contains(role)).Select(u => u.ToString())); + send += $"```css\n[{role.Name}]\n"; + send += string.Join(", ", channel.Guild.GetUsers().Where(u => u.Roles.Contains(role)).Select(u => u.ToString())); + send += $"\n```"; } var usr = umsg.Author as IGuildUser; while (send.Length > 2000)