summaryrefslogtreecommitdiffstats
path: root/lib/Bot/Games/Game.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Bot/Games/Game.pm')
-rw-r--r--lib/Bot/Games/Game.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Bot/Games/Game.pm b/lib/Bot/Games/Game.pm
index 55a1547..ceeda9d 100644
--- a/lib/Bot/Games/Game.pm
+++ b/lib/Bot/Games/Game.pm
@@ -15,7 +15,7 @@ has help => (
# just use that instead.
has players => (
metaclass => 'Collection::Array',
- traits => [qw/Bot::Games::Meta::Role::Attribute::Command/],
+ traits => [qw/Bot::Games::Trait::Attribute::Command/],
is => 'ro',
isa => 'ArrayRef[Str]',
auto_deref => 1,
@@ -69,7 +69,7 @@ command cmdlist => sub {
for my $method ($self->meta->get_all_methods) {
push @commands, $method->name
if $method->meta->can('does_role')
- && $method->meta->does_role('Bot::Games::Meta::Role::Command');
+ && $method->meta->does_role('Bot::Games::Trait::Method::Command');
}
return join ' ', sort map { '-' . $_ } @commands;
}, needs_init => 0;