fix(forums): changed how the commands are shown in resolvedset role
Some checks reported warnings
Gitea Actions Demo / Explore-Gitea-Actions (push) Has been cancelled

This commit is contained in:
Seaswimmer 2023-09-07 20:08:22 -04:00
parent 2724376f65
commit 25159b6bc9
No known key found for this signature in database
GPG key ID: 5019678FD9CF50D8

View file

@ -100,10 +100,12 @@ class Forums(commands.Cog):
role_obj = ctx.guild.get_role(role_id) role_obj = ctx.guild.get_role(role_id)
if role_obj: if role_obj:
already_in_list.append(role_obj.mention) already_in_list.append(role_obj.mention)
split_content = ctx.message.content.split()
command = split_content[:2]
if already_in_list: if already_in_list:
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)) await ctx.send("Roles already in the allowed roles list:\n" + "\n".join(already_in_list) + f"\nUse `{command} add` to add roles to this list.\nUse `{command} role remove` to remove roles from this list.", allowed_mentions=discord.AllowedMentions(roles=False))
else: else:
await ctx.send(f"No roles are currently in the allowed roles list.\nUse `{ctx.prefix}resolvedset role add` to add some!") await ctx.send(f"No roles are currently in the allowed roles list.\nUse `{command} add` to add some!")
@resolvedset_role.command(name='add') @resolvedset_role.command(name='add')
@commands.guild_only() @commands.guild_only()