This commit is contained in:
Julian 2022-08-26 20:42:29 -04:00
parent 19f6385dd4
commit 4a2d05ceb6
Signed by: NotNite
GPG Key ID: BD91A5402CCEB08A
1 changed files with 2 additions and 1 deletions

View File

@ -26,7 +26,8 @@ bot.on("ready", () => {
bot.createCommand({
name: command.name,
description: command.description,
type: Constants.ApplicationCommandTypes.CHAT_INPUT
type: Constants.ApplicationCommandTypes.CHAT_INPUT,
options: command.options
});
}
}