summaryrefslogtreecommitdiffstats
path: root/lib/Bot/Games.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Bot/Games.pm')
-rw-r--r--lib/Bot/Games.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Bot/Games.pm b/lib/Bot/Games.pm
index e1fe2a4..44989c5 100644
--- a/lib/Bot/Games.pm
+++ b/lib/Bot/Games.pm
@@ -70,7 +70,7 @@ sub said {
return if $args->{channel} eq 'msg';
return unless $args->{body} =~ /^$prefix(\w+)(?:\s+(.*))?/;
- my ($game_name, $action) = ($1, $2);
+ my ($game_name, $action) = (lc($1), $2);
return $self->game_list if $game_name eq 'games';
if ($game_name eq 'help') {
$game_name = $action;