From a88a3dbf65fbec0de1e916fb2f4d14a6cf29018b Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Tue, 16 Jan 2024 11:56:04 +0000 Subject: [PATCH] fix(aurora): fix embed formatting for addrole/immunity --- aurora/configuration/embed.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aurora/configuration/embed.py b/aurora/configuration/embed.py index 93fd9d0..4a88d1f 100644 --- a/aurora/configuration/embed.py +++ b/aurora/configuration/embed.py @@ -116,7 +116,7 @@ async def addrole(ctx: commands.Context) -> Embed: for chunk in chunks: e.add_field(name="", value=chunk) else: - e.description += '\n' + whitelist + e.description += '\n\n' + whitelist return e @@ -149,6 +149,6 @@ async def immune(ctx: commands.Context) -> Embed: for chunk in chunks: e.add_field(name="", value=chunk) else: - e.description += '\n' + immune_str + e.description += '\n\n' + immune_str return e