ytp command

This commit is contained in:
Supositware 2022-08-31 23:09:50 +02:00
parent 9765680f1c
commit f82ff3d380

View file

@ -166,6 +166,14 @@ const commands = [
.addStringOption(option => .addStringOption(option =>
option.setName('message') option.setName('message')
.setDescription('The message you want the bot to say when someone join in the current channel.')), .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()); .map(command => command.toJSON());