forked from blizzthewolf/SeaCogs
fix(aurora): fix embed formatting for addrole/immunity
This commit is contained in:
parent
3cbc8a744c
commit
a88a3dbf65
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue