From a4a0ec924a2a0482b7680ca66dd0501ba481f9a0 Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Tue, 16 Jan 2024 13:13:48 +0000 Subject: [PATCH] fix(aurora): fixed another error in the immune embed generator --- 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 73bd7f9..7eb33b1 100644 --- a/aurora/configuration/embed.py +++ b/aurora/configuration/embed.py @@ -126,7 +126,7 @@ async def immune(ctx: commands.Context) -> Embed: immune_roles = await config.guild(ctx.guild).immune_roles() if immune_roles: immune_str = [ctx.guild.get_role(role).mention or error(f"`{role}` (Not Found)") for role in immune_roles] - immune_str = '\n'.join(immune_roles) + immune_str = '\n'.join(immune_str) else: immune_str = warning("No roles are set as immune roles!")