generated from Baipyrus/DiscordJS-Template
optional parameter to pass focused value
This commit is contained in:
parent
03fd826952
commit
1d5d22dd5f
@ -251,11 +251,11 @@ async function infoResponse(interaction) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/** @param {AutocompleteInteraction} interaction */
|
/** @param {AutocompleteInteraction} interaction */
|
||||||
async function keywordAutocomplete(interaction) {
|
async function keywordAutocomplete(interaction, focused) {
|
||||||
const { options, guildId } = interaction;
|
const { options, guildId } = interaction;
|
||||||
|
|
||||||
// Get command options
|
// Get command options
|
||||||
const focused = options.getFocused();
|
if (!focused) focused = options.getFocused();
|
||||||
|
|
||||||
// Get list of keywords from database
|
// Get list of keywords from database
|
||||||
/** @type {import('../../models/keywords.js').Keyword[]} */
|
/** @type {import('../../models/keywords.js').Keyword[]} */
|
||||||
|
Loading…
Reference in New Issue
Block a user