From f924dd8fcaeca7523289b9aba46b6145c46b42dd Mon Sep 17 00:00:00 2001 From: sowgro Date: Tue, 5 Sep 2023 11:38:26 -0400 Subject: rename /use to /send, add resetcmd --- commands/use.js | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 commands/use.js (limited to 'commands/use.js') diff --git a/commands/use.js b/commands/use.js deleted file mode 100644 index dc9897b..0000000 --- a/commands/use.js +++ /dev/null @@ -1,16 +0,0 @@ -const { SlashCommandBuilder } = require('discord.js'); - -module.exports = { - data: new SlashCommandBuilder() - .setName('use') - .setDescription('Use a Command') - .addStringOption(option => - option.setName('command') - .setDescription('What the bot will send') - .setRequired(true) - .addChoices(...global.data.getList()) - ), - async execute(interaction) { - await interaction.reply(global.data.get(interaction.options.getString('command'))); - }, -}; \ No newline at end of file -- cgit v1.2.3