mirror of
https://github.com/pragma-/pbot.git
synced 2024-11-05 19:49:32 +01:00
Plugin/WordMorph: improve start message
This commit is contained in:
parent
58303f6b97
commit
e96e48562c
@ -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') {
|
||||
|
@ -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 {}
|
||||
|
Loading…
Reference in New Issue
Block a user