summaryrefslogtreecommitdiffstats
path: root/lib/Bot/Games/Trait/Method/Command.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Bot/Games/Trait/Method/Command.pm')
-rw-r--r--lib/Bot/Games/Trait/Method/Command.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Bot/Games/Trait/Method/Command.pm b/lib/Bot/Games/Trait/Method/Command.pm
index e00cb43..25bd2ff 100644
--- a/lib/Bot/Games/Trait/Method/Command.pm
+++ b/lib/Bot/Games/Trait/Method/Command.pm
@@ -1,5 +1,5 @@
package Bot::Games::Trait::Method::Command;
-use Moose::Role;
+use Bot::Games::OO::Role;
has pass_args => (
is => 'rw',
@@ -19,6 +19,6 @@ around execute => sub {
return $self->pass_args ? $self->$orig(@_) : $self->$orig($_[0]);
};
-no Moose::Role;
+no Bot::Games::OO::Role;
1;