Added autocomplete to panel, ticket & move cmds

Ticket/panel options are now autocompleted instead of being a choice in the slash commands. This also results in the max amount of tickets limit to be increased to infinity.
This commit is contained in:
DJj123dj
2025-08-28 09:00:07 +02:00
parent 793c6f0603
commit 82f2aeaa90
5 changed files with 42 additions and 45 deletions
+4 -3
View File
@@ -1333,8 +1333,8 @@ export class ODAutocompleteResponderManager extends ODManager<ODAutocompleteResp
export class ODAutocompleteResponderInstance {
/**The interaction which is the source of this instance. */
interaction: discord.AutocompleteInteraction
/**Did a worker already reply to this instance/interaction? */
didReply: boolean = false
/**Did a worker already respond to this instance/interaction? */
didRespond: boolean = false
/**The user who triggered this autocomplete. */
user: discord.User
/**The guild member who triggered this autocomplete. */
@@ -1356,7 +1356,7 @@ export class ODAutocompleteResponderInstance {
this.target = interaction.options.getFocused(true)
setTimeout(async () => {
if (!this.didReply){
if (!this.didRespond){
process.emit("uncaughtException",new ODSystemError("Autocomplete responder instance failed to respond widthin 2.5sec!"))
}
},timeoutMs ?? 2500)
@@ -1374,6 +1374,7 @@ export class ODAutocompleteResponderInstance {
return {success:false}
}else{
await this.interaction.respond(newChoices)
this.didRespond = true
return {success:true}
}
}catch(err){