This commit is contained in:
parent
ba4a286c80
commit
6ad8fd1039
2 changed files with 7 additions and 1 deletions
|
@ -35,9 +35,13 @@ export default (interaction: Interaction, client: Client) => {
|
||||||
return console.error(loc.get("e_interacreate_no_command"));
|
return console.error(loc.get("e_interacreate_no_command"));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (command.autocomplete) {
|
||||||
return command.autocomplete(interaction);
|
return command.autocomplete(interaction);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
|
@ -79,6 +79,8 @@ declare module "discord.js" {
|
||||||
data: SlashCommandBuilder;
|
data: SlashCommandBuilder;
|
||||||
/** How the command interact */
|
/** How the command interact */
|
||||||
interaction: (interaction: CommandInteraction, client: Client) => unknown;
|
interaction: (interaction: CommandInteraction, client: Client) => unknown;
|
||||||
|
/** Autocomplete logic */
|
||||||
|
autocomplete: undefined | ((interaction: AutocompleteInteraction) => unknown);
|
||||||
}
|
}
|
||||||
>;
|
>;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue