3
0
mirror of https://github.com/pragma-/pbot.git synced 2024-11-22 11:59:43 +01:00

applets/pbot-vm: increase length to trigger "Same output"

This commit is contained in:
Pragmatic Software 2023-04-28 00:48:37 -07:00
parent 8555e8f00e
commit 06650963a3
2 changed files with 2 additions and 2 deletions

View File

@ -448,7 +448,7 @@ sub show_output($self) {
exit 0; exit 0;
} }
if ($self->{channel} =~ m/^#/ and length $output > 22 and open my $fh, '<:encoding(UTF-8)', "$RealBin/../history/$self->{channel}-$self->{lang}.last-output") { if ($self->{channel} =~ m/^#/ and length $output > 50 and open my $fh, '<:encoding(UTF-8)', "$RealBin/../history/$self->{channel}-$self->{lang}.last-output") {
my $last_output; my $last_output;
my $time = <$fh>; my $time = <$fh>;

View File

@ -25,7 +25,7 @@ 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 => 4653, BUILD_REVISION => 4654,
BUILD_DATE => "2023-04-28", BUILD_DATE => "2023-04-28",
}; };