--- deliantra/maps/perl/NPC_Dialogue.pm 2006/06/24 00:08:58 1.2 +++ deliantra/maps/perl/NPC_Dialogue.pm 2006/06/24 00:16:33 1.3 @@ -44,9 +44,11 @@ sub tell { my ($self, $msg) = @_; + $msg = lc $msg; + for my $match (@{ $self->{match} }) { for (split /\|/, $match->[0]) { - if ($_ eq "*" || $_ eq $msg) { + if ($_ eq "*" || $msg eq lc) { my $reply = $match->[1]; # combine lines into paragraphs