summaryrefslogtreecommitdiffstats
path: root/lib/Bot/Games/Game/Xghost.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Bot/Games/Game/Xghost.pm')
-rw-r--r--lib/Bot/Games/Game/Xghost.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Bot/Games/Game/Xghost.pm b/lib/Bot/Games/Game/Xghost.pm
index 5adf534..6c783ab 100644
--- a/lib/Bot/Games/Game/Xghost.pm
+++ b/lib/Bot/Games/Game/Xghost.pm
@@ -12,13 +12,13 @@ command valid_move => sub {
my ($move) = @_;
return is_substring($self->state, uc($move))
&& length($self->state) + 1 == length($move);
-};
+}, formatter => __PACKAGE__->meta->formatter_for('Bool');
command valid_word_from_state => sub {
my $self = shift;
my ($word) = @_;
return is_substring($self->state, uc($move));
-};
+}, formatter => __PACKAGE__->meta->formatter_for('Bool');
__PACKAGE__->meta->make_immutable;
no Bot::Games::OO::Game;