3
0
mirror of https://github.com/pragma-/pbot.git synced 2025-01-22 10:04:36 +01:00

Plugin/Wordle: add Polish wordlist

This commit is contained in:
Pragmatic Software 2024-03-17 18:39:09 -07:00
parent 8970978444
commit 51fb92bc39
No known key found for this signature in database
GPG Key ID: CC916B6E3C84ECCE
3 changed files with 449902 additions and 15 deletions

449886
data/wordle/polish Normal file

File diff suppressed because it is too large Load Diff

View File

@ -50,6 +50,7 @@ my %wordlists = (
german => '/wordle/german', german => '/wordle/german',
italian => '/wordle/italian', italian => '/wordle/italian',
spanish => '/wordle/spanish', spanish => '/wordle/spanish',
polish => '/wordle/polish',
); );
my %color = ( my %color = (

View File

@ -25,8 +25,8 @@ use PBot::Imports;
# These are set by the /misc/update_version script # These are set by the /misc/update_version script
use constant { use constant {
BUILD_NAME => "PBot", BUILD_NAME => "PBot",
BUILD_REVISION => 4722, BUILD_REVISION => 4723,
BUILD_DATE => "2024-03-16", BUILD_DATE => "2024-03-17",
}; };
sub initialize {} sub initialize {}