summaryrefslogtreecommitdiffstats
path: root/lib/IM/Engine/Plugin/Commands/Command/Cmdlist.pm
blob: 564e2c40bcc1da0a20917c81a3306dc94d4b7871 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package IM::Engine::Plugin::Commands::Command::Cmdlist;
use IM::Engine::Plugin::Commands::OO;

has '+help' => (
    default => 'Displays a list of commands available to the bot',
);

sub init {
    my $self = shift;
    $self->is_active(0);
    return join ' ', map { $self->_ime_plugin->prefix . $_}
                         $self->_ime_plugin->command_list;
}

1;