diff options
author | 2020-04-07 12:01:26 +0300 | |
---|---|---|
committer | 2020-04-07 12:01:26 +0300 | |
commit | fb9523b9c5e93ff30cdc58ac451e807da323c8b4 (patch) | |
tree | 231e128b0de5f7b186a6961d91641159cd9e02fa /bot/constants.py | |
parent | (Constants, TicTacToe): Added confirmation and declining emojis. (diff) |
(Constants, TicTacToe): Added X and O emojis.
Diffstat (limited to 'bot/constants.py')
-rw-r--r-- | bot/constants.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bot/constants.py b/bot/constants.py index a23c6bcc..d43cf4d3 100644 --- a/bot/constants.py +++ b/bot/constants.py @@ -132,6 +132,8 @@ class Emojis: } confirmation = "\u2705" decline = "\u274c" + x = "\U0001f1fd" + o = "\U0001f1f4" class Hacktoberfest(NamedTuple): |