From d3328a4acdd20eb4cccb3e909c8219c9e29a770c Mon Sep 17 00:00:00 2001 From: Pragmatic Software Date: Fri, 8 Apr 2022 09:13:57 -0700 Subject: [PATCH] Factoids: `factinfo` now says "Applet" instead of "Module" --- lib/PBot/Core/Commands/Factoids.pm | 2 +- lib/PBot/VERSION.pm | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/PBot/Core/Commands/Factoids.pm b/lib/PBot/Core/Commands/Factoids.pm index aa439d75..054d7c4d 100644 --- a/lib/PBot/Core/Commands/Factoids.pm +++ b/lib/PBot/Core/Commands/Factoids.pm @@ -1035,7 +1035,7 @@ sub cmd_factinfo { my $applet_repo = $self->{pbot}->{registry}->get_value('general', 'applet_repo'); $applet_repo .= $factoids->get_data($channel, $trigger, 'workdir') . '/' if $factoids->exists($channel, $trigger, 'workdir'); return - "/say $trigger_name: Module loaded by " + "/say $trigger_name: Applet loaded by " . $factoids->get_data($channel, $trigger, 'owner') . " for $channel_name on " . localtime($factoids->get_data($channel, $trigger, 'created_on')) diff --git a/lib/PBot/VERSION.pm b/lib/PBot/VERSION.pm index 9798f5d0..3201f41e 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 => 4530, - BUILD_DATE => "2022-04-07", + BUILD_REVISION => 4532, + BUILD_DATE => "2022-04-08", }; sub initialize {}