CardsAgainstIRC3.Game.States.Base.BotListCommand C# (CSharp) Method

BotListCommand() private method

private BotListCommand ( CommandContext context, IEnumerable arguments ) : void
context CommandContext
arguments IEnumerable
return void
        public void BotListCommand(CommandContext context, IEnumerable<string> arguments)
        {
            SendInContext(context, "Current Bots: {0}", string.Join(", ", Manager.AllUsers.Where(a => a.Bot != null).Select(a => a.Nick)));
        }