diff --git a/info/core.py b/info/core.py index f3818c3..a85af2e 100644 --- a/info/core.py +++ b/info/core.py @@ -194,9 +194,9 @@ async def _command_info(self, ctx: commands.Context, command: commands.CommandCo async with ctx.typing(): view: CommandView = CommandView(ctx, command) embeds: List[discord.Embed] = [] + embeds.append(await view._make_embed()) if (embed := await view._get_downloader_info()) and self.cache.get_downloader_info(): embeds.append(embed) - embeds.append(await view._make_embed()) _out: discord.Message = await ctx.send( embeds=embeds, view=view,