diff --git a/scripts/deploy-commands.cjs b/scripts/deploy-commands.cjs index ad6f7c8..a55c2b3 100644 --- a/scripts/deploy-commands.cjs +++ b/scripts/deploy-commands.cjs @@ -166,6 +166,14 @@ const commands = [ .addStringOption(option => option.setName('message') .setDescription('The message you want the bot to say when someone join in the current channel.')), + + new SlashCommandBuilder() + .setName('ytp') + .setDescription('Generate a YTP') + .addBooleanOption(option => + option.setName('force') + .setDescription('Force the generation of the video in non-nsfw channel.') + .setRequired(false)), ] .map(command => command.toJSON());