summaryrefslogtreecommitdiffstats
path: root/lib/Bot/Games/Trait/Method/Command.pm
blob: 25bd2ff28d18234acc8bdd8346040d4d3376a28f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package Bot::Games::Trait::Method::Command;
use Bot::Games::OO::Role;

has pass_args => (
    is      => 'rw',
    isa     => 'Bool',
    default => 1,
);

has needs_init => (
    is      => 'rw',
    isa     => 'Bool',
    default => 1,
);

around execute => sub {
    my $orig = shift;
    my $self = shift;
    return $self->pass_args ? $self->$orig(@_) : $self->$orig($_[0]);
};

no Bot::Games::OO::Role;

1;