diff options
author | 2020-04-30 18:30:09 -0700 | |
---|---|---|
committer | 2020-04-30 18:30:09 -0700 | |
commit | ba442e1d2f1165e9a8d9d4f8363df9153a6bdd61 (patch) | |
tree | d91e7dcdfeb5ad75bc6bd00bee228eba8527966f | |
parent | Run a category check before logging that we are checking for an answered help... (diff) |
Display animated avatars in the user info command
Fixes #914
-rw-r--r-- | bot/cogs/information.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/cogs/information.py b/bot/cogs/information.py index 4eb36c340..ef2f308ca 100644 --- a/bot/cogs/information.py +++ b/bot/cogs/information.py @@ -206,7 +206,7 @@ class Information(Cog): description="\n\n".join(description) ) - embed.set_thumbnail(url=user.avatar_url_as(format="png")) + embed.set_thumbnail(url=user.avatar_url_as(static_format="png")) embed.colour = user.top_role.colour if roles else Colour.blurple() return embed |