Failed to overwrite global application commands
Since updating to BulkOverwrite, I'm getting the following error:
Solution:Jump to solution
you're calling
registerChatInputCommand
twice
ergo, twice a command with the same name...7 Replies
I've only got two command files in my commands directory. I suspected previous slash commands being an issue, but I've tried manually deleting those through the REST API to no avail.
I'd highly appreciate any help. :)
Application command names must be unique
Well I'm not trying to register any equally named commands and before enabling BulkOverwrite, I didn't have this issue.
This is the content of a file located in src/commands/General; without this file present, the error does not pop up
Solution
you're calling
registerChatInputCommand
twice
ergo, twice a command with the same nameOhh, I understand how it should be. That's such an obvious mistake to me now. Thank you very much!