3
0
mirror of https://github.com/pragma-/pbot.git synced 2024-11-17 01:19:31 +01:00

Plugin/Wordle: change "guesses attempted" to "guesses"

This commit is contained in:
Pragmatic Software 2024-11-02 17:59:07 -07:00
parent 73c4ed465d
commit e234446afd
No known key found for this signature in database
GPG Key ID: CC916B6E3C84ECCE
2 changed files with 2 additions and 2 deletions

View File

@ -158,7 +158,7 @@ sub wordle($self, $context) {
return NO_WORDLE;
}
my $result = "Current wordlist: $self->{$channel}->{wordlist} ($self->{$channel}->{length}); guesses attempted: $self->{$channel}->{guess_count}";
my $result = "Current wordlist: $self->{$channel}->{wordlist} ($self->{$channel}->{length}); guesses: $self->{$channel}->{guess_count}";
if ($self->{$channel}->{correct}) {
my $solved_on = concise ago (time - $self->{$channel}->{solved_on});

View File

@ -25,7 +25,7 @@ use PBot::Imports;
# These are set by the /misc/update_version script
use constant {
BUILD_NAME => "PBot",
BUILD_REVISION => 4823,
BUILD_REVISION => 4824,
BUILD_DATE => "2024-11-02",
};