From 2724376f657f3af9f0cb403bfc52d6c93f0bf455 Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Thu, 7 Sep 2023 20:05:27 -0400 Subject: [PATCH] docs(forums): fixed incorrect commands listed in resolvedset role --- forums/forums.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/forums/forums.py b/forums/forums.py index 01b5c10..fbf254b 100644 --- a/forums/forums.py +++ b/forums/forums.py @@ -101,9 +101,9 @@ class Forums(commands.Cog): if role_obj: already_in_list.append(role_obj.mention) if already_in_list: - await ctx.send("Roles already in the allowed roles list:\n" + "\n".join(already_in_list) + f"\nUse `{ctx.prefix}forumconfig add` to add roles to this list.\nUse `{ctx.prefix}forumconfig remove` to remove roles from this list.", allowed_mentions=discord.AllowedMentions(roles=False)) + await ctx.send("Roles already in the allowed roles list:\n" + "\n".join(already_in_list) + f"\nUse `{ctx.prefix}resolvedset role add` to add roles to this list.\nUse `{ctx.prefix}resolvedset role remove` to remove roles from this list.", allowed_mentions=discord.AllowedMentions(roles=False)) else: - await ctx.send(f"No roles are currently in the allowed roles list.\nUse `{ctx.prefix}forumconfig add` to add some!") + await ctx.send(f"No roles are currently in the allowed roles list.\nUse `{ctx.prefix}resolvedset role add` to add some!") @resolvedset_role.command(name='add') @commands.guild_only()