-
Notifications
You must be signed in to change notification settings - Fork 15
Slash commands not syncing to guild 1263067254153805905 while working in 1410939321812258928; ?sync command ineffective #19
Copy link
Copy link
Open
Labels
Priority: CriticalCritical issue requiring immediate attention.Critical issue requiring immediate attention.Status: OpenIssue is open and ready for work.Issue is open and ready for work.bugSomething isn't workingSomething isn't workinghelp wantedExtra attention is neededExtra attention is needed
Description
After bot updates that introduce new slash commands, the commands are correctly synced and visible in guild 1410939321812258928. However, the same commands do not appear in guild 1263067254153805905.
Additionally, the ?sync command that is intended to manually force command synchronization does not seem to perform any action and does not resolve the issue.
Current Behavior:
- New commands appear and work normally in guild
1410939321812258928 - Commands do not appear in guild
1263067254153805905 - Running
?syncdoes not trigger command synchronization - No error messages are shown
Expected Behavior:
- When a bot update adds new slash commands, they should sync to all configured guilds
- Running
?syncshould force the bot to resync commands to the current server
Steps to Reproduce:
- Add or update a slash command in the bot
- Restart the bot
- Observe commands appear in guild
1410939321812258928 - Check guild
1263067254153805905 - Notice the new commands are missing
- Run
?sync - Commands still do not appear
Possible Causes:
- Guild-specific command sync not being triggered for
1263067254153805905 ?synccommand not callingbot.tree.sync()or equivalent- Cached command tree preventing update
- Guild not included in sync logic
Expected Fix:
- Ensure the sync command explicitly runs something similar to:
await bot.tree.sync(guild=discord.Object(id=GUILD_ID))
or performs a global sync where necessary.
- Verify the
?synccommand actually executes the sync logic and reports success or failure.
Affected Components:
- Command sync system
?synccommand- Guild command registration
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
Priority: CriticalCritical issue requiring immediate attention.Critical issue requiring immediate attention.Status: OpenIssue is open and ready for work.Issue is open and ready for work.bugSomething isn't workingSomething isn't workinghelp wantedExtra attention is neededExtra attention is needed