fix(pterodactyl): use add_field so formatting doesn't look off
Some checks failed
Actions / Lint Code (Ruff & Pylint) (push) Failing after 19s
Actions / Build Documentation (MkDocs) (push) Successful in 21s

This commit is contained in:
Seaswimmer 2024-03-02 19:35:42 -05:00
parent 088bf6b8dc
commit 1ad721f380
Signed by: cswimr
GPG key ID: B8953EC01E5C4063

View file

@ -367,10 +367,8 @@ class Pterodactyl(commands.Cog):
await ctx.send(embed=embed)
if not len(regex_blacklist) == 0:
regex_blacklist_embed = discord.Embed(color = await ctx.embed_color(), title="Regex Blacklist")
regex_string = ''
for name, regex in regex_blacklist.items():
regex_string += f"**{name}**: {box(regex, 're')}\n"
regex_blacklist_embed.description = regex_string
regex_blacklist_embed.add_field(name=name, value=box(regex, 're'), inline=False)
await ctx.send(embed=regex_blacklist_embed)
def get_bool_str(self, inp: bool) -> str: