fix(pterodactyl): actually show the blacklisted regex in ptero set view
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:32:45 -05:00
parent e6231bf1a7
commit bf3f0f9782
Signed by: cswimr
GPG key ID: B8953EC01E5C4063

View file

@ -368,8 +368,8 @@ class Pterodactyl(commands.Cog):
if not len(regex_blacklist) == 0:
regex_blacklist_embed = discord.Embed(color = await ctx.embed_color(), title="Regex Blacklist")
regex_string = ''
for regex in regex_blacklist:
regex_string += f"{box(regex, 're')}\n"
for name, regex in regex_blacklist:
regex_string += f"**{name}**: {box(regex, 're')}\n"
regex_blacklist_embed.description = regex_string
await ctx.send(embed=regex_blacklist_embed)