fix(aurora): fixed _core function using avatar_url instead of display_avatar.url
Some checks failed
Actions / Lint Code (Pylint) (pull_request) Failing after 15s
Actions / Build Documentation (MkDocs) (pull_request) Successful in 11s

This commit is contained in:
Seaswimmer 2024-01-15 07:00:53 +00:00
parent ad9675e60e
commit d99df7f898
Signed by: cswimr
GPG key ID: D74DDDDF420E13DF

View file

@ -14,7 +14,7 @@ async def _core(ctx: commands.Context) -> Embed:
description="Use the buttons below to configure Aurora.",
color=await ctx.embed_color()
)
embed.set_thumbnail(url=ctx.bot.user.avatar_url)
embed.set_thumbnail(url=ctx.bot.user.display_avatar.url)
return embed
async def _overrides(user: Union[Member, User]) -> str: