aboutsummaryrefslogtreecommitdiff
path: root/saxrobot
diff options
context:
space:
mode:
Diffstat (limited to 'saxrobot')
-rwxr-xr-xsaxrobot5
1 files changed, 2 insertions, 3 deletions
diff --git a/saxrobot b/saxrobot
index 984fd7b..0dcd5f1 100755
--- a/saxrobot
+++ b/saxrobot
@@ -84,15 +84,14 @@ sub irc_public {
my $me = $irc->nick_name;
my $collected_response = "";
- print $config{triggers};
my @expressions = (keys %{$config{triggers}});
my $expression = join '|', @expressions;
- while ($what =~ /($expression)/g) {
+ while ($what =~ /($expression)/gi) {
my $matched = $1;
my $key;
# figure out which key matched
foreach (@expressions) {
- if ($matched =~ /$_/) {
+ if ($matched =~ /$_/i) {
$key = $_;
last;
}