diff options
author | 2021-04-13 18:11:42 +0530 | |
---|---|---|
committer | 2021-04-13 18:11:42 +0530 | |
commit | a6e3343b4ca1b2d7833953228c52b9a4bba73867 (patch) | |
tree | c3ce3af838bfb266187f9498c4ce45641c24a444 /bot/constants.py | |
parent | Use a variable for the encoded search query. (diff) |
use emojis and limit tags to 3
Diffstat (limited to 'bot/constants.py')
-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 bb538487..6c114180 100644 --- a/bot/constants.py +++ b/bot/constants.py @@ -201,6 +201,11 @@ class Emojis: status_dnd = "<:status_dnd:470326272082313216>" status_offline = "<:status_offline:470326266537705472>" + stackoverflow_upvote = environ.get('stack_upvote', "<:stack_upvote:831468823320330270>") + stackoverflow_tag = environ.get('stack_tag', "<:stack_tag:831468691647889419> ") + stackoverflow_views = environ.get('stack_views', "<:stack_eye:831455489040318464>") + stackoverflow_ans = environ.get('stack_ans', "<:stack_ans:831455489195638784>") + class Icons: questionmark = "https://cdn.discordapp.com/emojis/512367613339369475.png" |