From 825577d7b197205e4eaca758679a74c526287944 Mon Sep 17 00:00:00 2001 From: snipe <72265661+notsniped@users.noreply.github.com> Date: Mon, 29 Apr 2024 19:42:53 +0530 Subject: [PATCH] Fix issue where `/profile_banner` wouldn't sync when constructed in `/customization` slash group --- main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.py b/main.py index ac12068..499bc82 100644 --- a/main.py +++ b/main.py @@ -131,9 +131,9 @@ async def rating(ctx: ApplicationContext, user: discord.User = None): await ctx.respond(embed=localembed) # User Profile Customization Commands -# customization = discord.commands.SlashCommandGroup("customize", "Commands used to customize the user's /profile command.") Disable because command doesn't sync with this +customization = client.slash_group("customize", "Commands used to customize the user's /profile command.") -@client.slash_command( +@customization.command( name="profile_banner", description="Set a banner to display on your /profile command! (url only)" )