From e11a3e30518635960256b7ad8ec0c2736b95d5dc Mon Sep 17 00:00:00 2001 From: samvaio Date: Thu, 24 Nov 2016 03:34:50 +0530 Subject: [PATCH] Update Utility.cs - removed a white space from list servers --- src/NadekoBot/Modules/Utility/Utility.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NadekoBot/Modules/Utility/Utility.cs b/src/NadekoBot/Modules/Utility/Utility.cs index 17885f24..3e191577 100644 --- a/src/NadekoBot/Modules/Utility/Utility.cs +++ b/src/NadekoBot/Modules/Utility/Utility.cs @@ -193,7 +193,7 @@ namespace NadekoBot.Modules.Utility return; } - await channel.SendMessageAsync(String.Join("\n", guilds.Select(g => $"```css\n Name: {g.Name} ID: {g.Id} Members: #{g.GetUsers().Count} OwnerID:{g.OwnerId} ```"))).ConfigureAwait(false); + await channel.SendMessageAsync(String.Join("\n", guilds.Select(g => $"```css\nName: {g.Name} ID:{g.Id} Members:#{g.GetUsers().Count} OwnerID: {g.OwnerId} ```"))).ConfigureAwait(false); } //[NadekoCommand, Usage, Description, Aliases]