Plugin/RunCommand: fix subroutine argument

This commit is contained in:
Pragmatic Software 2023-05-05 12:28:36 -07:00
parent e6149cc35c
commit 15d7abf5ec
2 changed files with 3 additions and 3 deletions

View File

@ -66,7 +66,7 @@ sub cmd_runcmd($self, $context) {
return "No output." if not $lines; return "No output." if not $lines;
} }
sub send_lines($self, $context, $buffer, $send_all) { sub send_lines($self, $context, $buffer, $send_all = 0) {
my $lines = 0; my $lines = 0;
my $regex; my $regex;

View File

@ -25,8 +25,8 @@ use PBot::Imports;
# These are set by the /misc/update_version script # These are set by the /misc/update_version script
use constant { use constant {
BUILD_NAME => "PBot", BUILD_NAME => "PBot",
BUILD_REVISION => 4657, BUILD_REVISION => 4660,
BUILD_DATE => "2023-05-04", BUILD_DATE => "2023-05-05",
}; };
sub initialize {} sub initialize {}