3
0
mirror of https://github.com/pragma-/pbot.git synced 2024-10-03 01:48:38 +02:00

factids: er, it is fact <location> <keyword> not fact <keyword> <location>, oops

This commit is contained in:
Pragmatic Software 2011-01-30 03:06:45 +00:00
parent ffdecba6ee
commit cb2c17f636
2 changed files with 2 additions and 2 deletions

View File

@ -228,7 +228,7 @@ sub interpreter {
}
if($found > 1) {
return $ref_from . "Ambiguous keyword '$original_keyword' exists in multiple locations (use 'fact <keyword> <location>' to choose one): $chans";
return $ref_from . "Ambiguous keyword '$original_keyword' exists in multiple locations (use 'fact <location> <keyword>' to choose one): $chans";
}
elsif($found == 1) {
$pbot->logger->log("Found '$original_keyword' as '$fwd_trig' in [$fwd_chan]\n");

View File

@ -13,7 +13,7 @@ use warnings;
# These are set automatically by the build/commit script
use constant {
BUILD_NAME => "PBot",
BUILD_REVISION => 282,
BUILD_REVISION => 283,
BUILD_DATE => "2011-01-29",
};