summaryrefslogtreecommitdiffstats
path: root/lib/Bot/Games/Trait/Method
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Bot/Games/Trait/Method')
-rw-r--r--lib/Bot/Games/Trait/Method/Command.pm4
-rw-r--r--lib/Bot/Games/Trait/Method/Formatted.pm4
2 files changed, 4 insertions, 4 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;
diff --git a/lib/Bot/Games/Trait/Method/Formatted.pm b/lib/Bot/Games/Trait/Method/Formatted.pm
index 7e0b986..cdd4c60 100644
--- a/lib/Bot/Games/Trait/Method/Formatted.pm
+++ b/lib/Bot/Games/Trait/Method/Formatted.pm
@@ -1,5 +1,5 @@
package Bot::Games::Trait::Method::Formatted;
-use Moose::Role;
+use Bot::Games::OO::Role;
has formatter => (
is => 'rw',
@@ -17,6 +17,6 @@ sub _munge_formatter {
return $self->associated_metaclass->formatter_for($format);
}
-no Moose::Role;
+no Bot::Games::OO::Role;
1;