diff options
author | 2020-09-21 20:08:46 +0200 | |
---|---|---|
committer | 2020-09-21 20:18:19 +0200 | |
commit | 318200d8d340acbad79694a4f541adf421234a94 (patch) | |
tree | 2839e808cafeb51a515fd36c0b433a607e86e933 | |
parent | Add utils module in bot/exts/ (diff) |
Add status emojis in constants.py
- Required for extensions.py to work properly
-rw-r--r-- | bot/constants.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/bot/constants.py b/bot/constants.py index 07b040fc..20d950cb 100644 --- a/bot/constants.py +++ b/bot/constants.py @@ -123,6 +123,11 @@ class Emojis: pull_request_closed = "<:PRClosed:629695470519713818>" merge = "<:PRMerged:629695470570176522>" + status_online = "<:status_online:470326272351010816>" + status_idle = "<:status_idle:470326266625785866>" + status_dnd = "<:status_dnd:470326272082313216>" + status_offline = "<:status_offline:470326266537705472>" + class Hacktoberfest(NamedTuple): voice_id = 514420006474219521 |