diff options
| author | 2021-04-13 18:28:20 +0530 | |
|---|---|---|
| committer | 2021-04-13 18:28:20 +0530 | |
| commit | 7a22098801065d8ffcc5ea38d854ebaff0965b52 (patch) | |
| tree | 6b018ef8462dc4cf804772e57a7758f334aefc22 | |
| parent | use emojis and limit tags to 3 (diff) | |
Update emojis
| -rw-r--r-- | bot/constants.py | 8 | ||||
| -rw-r--r-- | bot/exts/evergreen/stackoverflow.py | 4 | 
2 files changed, 5 insertions, 7 deletions
| diff --git a/bot/constants.py b/bot/constants.py index 6c114180..05eea474 100644 --- a/bot/constants.py +++ b/bot/constants.py @@ -201,10 +201,10 @@ 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>") +    stackoverflow_upvote = environ.get('stack_upvote', "<:stack_upvote:*>")  # TODO: Fill in numbers (ids) +    stackoverflow_tag = environ.get('stack_tag', "<:stack_tag:*> ") +    stackoverflow_views = environ.get('stack_views', "<:stack_eye:*>") +    stackoverflow_ans = environ.get('stack_ans', "<:stack_ans:*>")  class Icons: diff --git a/bot/exts/evergreen/stackoverflow.py b/bot/exts/evergreen/stackoverflow.py index 316c1ad7..04126d9c 100644 --- a/bot/exts/evergreen/stackoverflow.py +++ b/bot/exts/evergreen/stackoverflow.py @@ -82,7 +82,5 @@ def setup(bot: commands.Bot) -> None:      """Loads Stackoverflow Cog."""      bot.add_cog(Stackoverflow(bot)) -# View icon made by Gregor Cresnar (https://www.flaticon.com/authors/gregor-cresnar) from www.flaticon.com, and edited -# by me -# Answer icon made by Prosymbols (https://www.flaticon.com/authors/prosymbols) from www.flaticon.com, and edited by me +# Upvote and Comment icon taken from Reddit bot  # Tag icon made by Freepik (https://www.flaticon.com/authors/freepik) from www.flaticon.com, and edited by me | 
