diff options
| author | 2020-04-07 11:57:13 +0300 | |
|---|---|---|
| committer | 2020-04-07 11:57:13 +0300 | |
| commit | 83d9173cdcd8671dedf5400dde81caac21e37634 (patch) | |
| tree | 2a5098af5fe4b6a0cd9492a8f7e06a0a24324226 | |
| parent | (TicTacToe): Added new player-about variables to `Game` class. (diff) | |
(Constants, TicTacToe): Added number emojis that will be shown in board and in reactions.
| -rw-r--r-- | bot/constants.py | 13 | 
1 files changed, 13 insertions, 0 deletions
| diff --git a/bot/constants.py b/bot/constants.py index ca9bb94a..0135124b 100644 --- a/bot/constants.py +++ b/bot/constants.py @@ -118,6 +118,19 @@ class Emojis:      pull_request_closed = "<:PRClosed:629695470519713818>"      merge = "<:PRMerged:629695470570176522>" +    # TicTacToe Emojis +    number_emojis = { +        1: "\u0031", +        2: "\u0032", +        3: "\u0033", +        4: "\u0034", +        5: "\u0035", +        6: "\u0036", +        7: "\u0037", +        8: "\u0038", +        9: "\u0039" +    } +  class Hacktoberfest(NamedTuple):      voice_id = 514420006474219521 | 
