Show nick before channel in `rq` command when no quotes found

This commit is contained in:
Pragmatic Software 2014-02-10 18:07:34 +00:00
parent 6d8fac71fb
commit 4c4bdd9188
2 changed files with 6 additions and 6 deletions

View File

@ -450,14 +450,14 @@ sub show_random_quotegrab {
if($#quotes < 0) {
my $result = "No quotes grabbed ";
if($channel_search ne '.*') {
$result .= "in $channel_search ";
}
if($nick_search ne '.*') {
$result .= "for $nick_search ";
}
if($channel_search ne '.*') {
$result .= "in $channel_search ";
}
if($text_search ne '.*') {
$result .= "matching '$text_search' ";
}

View File

@ -13,7 +13,7 @@ use warnings;
# These are set automatically by the build/commit script
use constant {
BUILD_NAME => "PBot",
BUILD_REVISION => 480,
BUILD_REVISION => 481,
BUILD_DATE => "2014-02-10",
};