.whpl fix on many users
This commit is contained in:
		@@ -116,15 +116,18 @@ namespace NadekoBot.Modules.Utility
 | 
			
		||||
            var arr = (await (Context.Channel as IGuildChannel).Guild.GetUsersAsync())
 | 
			
		||||
                    .Where(u => u.Game?.Name?.ToUpperInvariant() == game)
 | 
			
		||||
                    .Select(u => u.Username)
 | 
			
		||||
                    .Shuffle()
 | 
			
		||||
                    .Take(60)
 | 
			
		||||
                    .ToList();
 | 
			
		||||
 | 
			
		||||
            int i = 0;
 | 
			
		||||
            if (!arr.Any())
 | 
			
		||||
                await Context.Channel.SendErrorAsync("Nobody is playing that game.").ConfigureAwait(false);
 | 
			
		||||
            else
 | 
			
		||||
            else { 
 | 
			
		||||
                await Context.Channel.SendConfirmAsync("```css\n" + string.Join("\n", arr.GroupBy(item => (i++) / 2)
 | 
			
		||||
                                                                                 .Select(ig => string.Concat(ig.Select(el => $"• {el,-27}")))) + "\n```")
 | 
			
		||||
                                                                                 .ConfigureAwait(false);
 | 
			
		||||
                }
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        [NadekoCommand, Usage, Description, Aliases]
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user