diff options
Diffstat (limited to '')
-rw-r--r-- | commands/send.js (renamed from commands/use.js) | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/commands/use.js b/commands/send.js index dc9897b..a339784 100644 --- a/commands/use.js +++ b/commands/send.js @@ -2,11 +2,11 @@ const { SlashCommandBuilder } = require('discord.js'); module.exports = { data: new SlashCommandBuilder() - .setName('use') - .setDescription('Use a Command') + .setName('send') + .setDescription('Send a command') .addStringOption(option => option.setName('command') - .setDescription('What the bot will send') + .setDescription('Name of the command to send') .setRequired(true) .addChoices(...global.data.getList()) ), |