From d2b785207cf70c5070b2218560654e3e05a684ae Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Thu, 7 Sep 2023 20:10:26 -0400 Subject: [PATCH] fix(forums): fixed weird formatting in resolvedset roles --- forums/forums.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/forums/forums.py b/forums/forums.py index e07dc0a..f0c3716 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) split_content = ctx.message.content.split() - command = split_content[:2] + command = ' '.join(split_content[:2]) if already_in_list: - 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)) + 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} 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 `{command} add` to add some!")