diff --git a/pterodactyl/pterodactyl.py b/pterodactyl/pterodactyl.py index b926e54..d570bb9 100644 --- a/pterodactyl/pterodactyl.py +++ b/pterodactyl/pterodactyl.py @@ -345,7 +345,7 @@ class Pterodactyl(commands.Cog): leave_msg = await config.leave_msg() mask_ip = await config.mask_ip() api_endpoint = await config.api_endpoint() - regex_blacklist = await config.regex_blacklist() + regex_blacklist: dict = await config.regex_blacklist() embed = discord.Embed(color = await ctx.embed_color(), title="Pterodactyl Configuration") embed.description = f"""**Base URL:** {base_url} **Server ID:** `{server_id}` @@ -368,7 +368,7 @@ 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 name, regex in regex_blacklist: + for name, regex in regex_blacklist.items(): regex_string += f"**{name}**: {box(regex, 're')}\n" regex_blacklist_embed.description = regex_string await ctx.send(embed=regex_blacklist_embed)