From f82ff3d380da1166b460959e62f88fe347ae3b32 Mon Sep 17 00:00:00 2001 From: Supositware Date: Wed, 31 Aug 2022 23:09:50 +0200 Subject: [PATCH] ytp command --- scripts/deploy-commands.cjs | 8 ++++++++ 1 file changed, 8 insertions(+) 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());