.whoplays final fancy fix

This commit is contained in:
Master Kwoth 2016-06-04 03:06:20 +02:00
parent 88368be749
commit 052fa32e55

View File

@ -995,7 +995,7 @@ namespace NadekoBot.Modules.Administration
if (arr.Length == 0) if (arr.Length == 0)
await e.Channel.SendMessage("Nobody. (not 100% sure)"); await e.Channel.SendMessage("Nobody. (not 100% sure)");
else else
await e.Channel.SendMessage(string.Join("\n", arr.GroupBy(item => (i++) / 3).Select(ig => string.Join("", ig.Select(el => $"• {el,-35}"))))); await e.Channel.SendMessage("```xl\n" + string.Join("\n", arr.GroupBy(item => (i++) / 3).Select(ig => string.Join("", ig.Select(el => $"• {el,-35}")))) + "\n```");
}); });
}); });