forked from cswimr/SeaCogs
fix(aurora): fixed an error in the immune embed generator
This commit is contained in:
parent
7476fcaa8d
commit
630381328b
1 changed files with 2 additions and 2 deletions
|
@ -125,8 +125,8 @@ 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]
|
||||
immune_str = '\n'.join(immune)
|
||||
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)
|
||||
else:
|
||||
immune_str = warning("No roles are set as immune roles!")
|
||||
|
||||
|
|
Loading…
Reference in a new issue