From d99df7f898d79a143c9199ac0934f0895af7e2d9 Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Mon, 15 Jan 2024 07:00:53 +0000 Subject: [PATCH] fix(aurora): fixed _core function using avatar_url instead of display_avatar.url --- aurora/configuration/embed.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aurora/configuration/embed.py b/aurora/configuration/embed.py index b5f244a..24632d9 100644 --- a/aurora/configuration/embed.py +++ b/aurora/configuration/embed.py @@ -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: