From afed8e9108f95e869acaeff0f96fad39d31f12ac Mon Sep 17 00:00:00 2001 From: Supositware Date: Sun, 28 Aug 2022 17:22:49 +0200 Subject: [PATCH] Add owner commands --- scripts/deploy-commands.cjs | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/scripts/deploy-commands.cjs b/scripts/deploy-commands.cjs index 1e8deba..720a12e 100644 --- a/scripts/deploy-commands.cjs +++ b/scripts/deploy-commands.cjs @@ -113,6 +113,34 @@ const commands = [ option.setName('something') .setDescription('🤫') .setRequired(true)), + + new SlashCommandBuilder() + .setName('die') + .setDescription('Kill the bot'), + + new SlashCommandBuilder() + .setName('ublacklist') + .setDescription('Blacklist a user from the bot') + .addStringOption(option => + option.setName('command') + .setDescription('Which command do you want to get a user blacklisted from?') + .setRequired(true)) + .addStringOption(option => + option.setName('userid') + .setDescription('Who do you want to blacklist?') + .setRequired(true)) + .addStringOption(option => + option.setName('reason') + .setDescription('The reason of the blacklist.') + .setRequired(false)), + + new SlashCommandBuilder() + .setName('deletetweet') + .setDescription('Delete a tweet') + .addStringOption(option => + option.setName('tweetid') + .setDescription('The id of the tweet you wish to delete.') + .setRequired(true)), ] .map(command => command.toJSON());