From 06650963a32d7d441ba0cbc0a7c46a307b9efd60 Mon Sep 17 00:00:00 2001 From: Pragmatic Software Date: Fri, 28 Apr 2023 00:48:37 -0700 Subject: [PATCH] applets/pbot-vm: increase length to trigger "Same output" --- applets/pbot-vm/host/lib/Languages/_default.pm | 2 +- lib/PBot/VERSION.pm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/applets/pbot-vm/host/lib/Languages/_default.pm b/applets/pbot-vm/host/lib/Languages/_default.pm index 73ee6e45..4de5f9d1 100755 --- a/applets/pbot-vm/host/lib/Languages/_default.pm +++ b/applets/pbot-vm/host/lib/Languages/_default.pm @@ -448,7 +448,7 @@ sub show_output($self) { 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 $time = <$fh>; diff --git a/lib/PBot/VERSION.pm b/lib/PBot/VERSION.pm index 74b03b2a..869959a3 100644 --- a/lib/PBot/VERSION.pm +++ b/lib/PBot/VERSION.pm @@ -25,7 +25,7 @@ use PBot::Imports; # These are set by the /misc/update_version script use constant { BUILD_NAME => "PBot", - BUILD_REVISION => 4653, + BUILD_REVISION => 4654, BUILD_DATE => "2023-04-28", };