From bb3da8d03b9fe737faa5d1738154835261f25441 Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Mon, 15 Jan 2024 07:09:44 +0000 Subject: [PATCH] fix(aurora): fixed embed fields being inline --- aurora/configuration/embed.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/aurora/configuration/embed.py b/aurora/configuration/embed.py index 71593db..a4cd1c4 100644 --- a/aurora/configuration/embed.py +++ b/aurora/configuration/embed.py @@ -103,9 +103,9 @@ async def _immune(guild: Guild) -> str: async def embed(ctx: commands.Context) -> Embed: """Generates the configuration embed for a guild.""" embed = await _core(ctx) - embed.add_field(name="User Overrides", value=await _overrides(ctx.author)) + embed.add_field(name="User Overrides", value=await _overrides(ctx.author), inline=False) if ctx.guild is not None and (ctx.author.guild_permissions.administrator or ctx.author.guild_permissions.manage_guild): - embed.add_field(name="Guild Settings", value=await _guild(ctx.guild)) - embed.add_field(name="Blacklist Roles", value=await _blacklist(ctx.guild)) - embed.add_field(name="Immune Roles", value=await _immune(ctx.guild)) + embed.add_field(name="Guild Settings", value=await _guild(ctx.guild), inline=False) + embed.add_field(name="Blacklist Roles", value=await _blacklist(ctx.guild), inline=False) + embed.add_field(name="Immune Roles", value=await _immune(ctx.guild), inline=False) return embed