From 15d7abf5ec0d6d023dbc3f07d57f7938196ac491 Mon Sep 17 00:00:00 2001 From: Pragmatic Software Date: Fri, 5 May 2023 12:28:36 -0700 Subject: [PATCH] Plugin/RunCommand: fix subroutine argument --- lib/PBot/Plugin/RunCommand.pm | 2 +- lib/PBot/VERSION.pm | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/PBot/Plugin/RunCommand.pm b/lib/PBot/Plugin/RunCommand.pm index 3741d356..d3f8ae5c 100644 --- a/lib/PBot/Plugin/RunCommand.pm +++ b/lib/PBot/Plugin/RunCommand.pm @@ -66,7 +66,7 @@ sub cmd_runcmd($self, $context) { 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 $regex; diff --git a/lib/PBot/VERSION.pm b/lib/PBot/VERSION.pm index 10d98f50..65ed79ee 100644 --- a/lib/PBot/VERSION.pm +++ b/lib/PBot/VERSION.pm @@ -25,8 +25,8 @@ use PBot::Imports; # These are set by the /misc/update_version script use constant { BUILD_NAME => "PBot", - BUILD_REVISION => 4657, - BUILD_DATE => "2023-05-04", + BUILD_REVISION => 4660, + BUILD_DATE => "2023-05-05", }; sub initialize {}