autocompleteRun for sub commands
Is it possible to setup a
autocompleteRun for specific subcommands similar to how it is done for chatInputRun?2 Replies
You will have to either use autocomplete-handler or use conditions in
autocompleteRun method inside the subcommand class
Additionally there can be only one autocompleteRun method
To distinguish, you get interaction.commandName or similarYeah this is the way I was thinking too, thank you