diff --git a/PBot/Interpreter.pm b/PBot/Interpreter.pm index 54f0864f..db956421 100644 --- a/PBot/Interpreter.pm +++ b/PBot/Interpreter.pm @@ -180,7 +180,8 @@ sub interpret { } elsif($command =~ /^([^ ]+)\s+is\s+(.*)$/) { my ($k, $a) = ($1, $2); - my ($channel, $trigger) = $pbot->factoids->find_factoid($from, $k, undef, 1); + # my ($channel, $trigger) = $pbot->factoids->find_factoid($from, $k, undef, 1); + my ($channel, $trigger) = $pbot->factoids->find_factoid($from, $k); if(defined $trigger) { ($keyword, $arguments) = ($k, "is $a"); diff --git a/PBot/VERSION.pm b/PBot/VERSION.pm index 7db0a0f6..1d9a1011 100644 --- a/PBot/VERSION.pm +++ b/PBot/VERSION.pm @@ -13,7 +13,7 @@ use warnings; # These are set automatically by the build/commit script use constant { BUILD_NAME => "PBot", - BUILD_REVISION => 220, + BUILD_REVISION => 221, BUILD_DATE => "2010-06-29", };