fix(aurora): fixed another error in the immune embed generator

This commit is contained in:
Seaswimmer 2024-01-16 13:13:48 +00:00
parent 630381328b
commit a4a0ec924a
Signed by untrusted user: cswimr
GPG key ID: D74DDDDF420E13DF

View file

@ -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!")