Plugin/WordMorph: improve start message

This commit is contained in:
Pragmatic Software 2024-08-03 00:00:07 -07:00
parent 58303f6b97
commit e96e48562c
No known key found for this signature in database
GPG Key ID: CC916B6E3C84ECCE
2 changed files with 5 additions and 5 deletions

View File

@ -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') {

View File

@ -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 {}