From e96e48562c1c303dd7555939c380e20cdd4f7004 Mon Sep 17 00:00:00 2001 From: Pragmatic Software Date: Sat, 3 Aug 2024 00:00:07 -0700 Subject: [PATCH] Plugin/WordMorph: improve start message --- lib/PBot/Plugin/WordMorph.pm | 6 +++--- lib/PBot/VERSION.pm | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/PBot/Plugin/WordMorph.pm b/lib/PBot/Plugin/WordMorph.pm index 1ff9f4fa..dd2273ac 100644 --- a/lib/PBot/Plugin/WordMorph.pm +++ b/lib/PBot/Plugin/WordMorph.pm @@ -154,7 +154,7 @@ sub wordmorph($self, $context) { return NO_MORPH_AVAILABLE; } - return "Current word morph: " . $self->show_morph_with_blanks($channel) . " (Fill in the blanks)"; + return "Current word morph: " . $self->show_morph_with_blanks($channel) . " (Change the word one letter at a time)"; } when ('giveup') { @@ -214,7 +214,7 @@ sub wordmorph($self, $context) { } $self->set_up_new_morph($morph, $channel); - return "New word morph: " . $self->show_morph_with_blanks($channel) . " (Fill in the blanks)"; + return "New word morph: " . $self->show_morph_with_blanks($channel) . " (Change the word one letter at a time)"; } when ('custom') { @@ -267,7 +267,7 @@ sub wordmorph($self, $context) { } $self->set_up_new_morph($morph, $channel); - return "New word morph: " . $self->show_morph_with_blanks($channel) . " (Fill in the blanks)"; + return "New word morph: " . $self->show_morph_with_blanks($channel) . " (Change the word one letter at a time)"; } when ('search') { diff --git a/lib/PBot/VERSION.pm b/lib/PBot/VERSION.pm index 223105a7..2dad4ef9 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 => 4773, - BUILD_DATE => "2024-07-23", + BUILD_REVISION => 4774, + BUILD_DATE => "2024-08-02", }; sub initialize {}