diff --git a/commands/choose.js b/commands/choose.js index 6e71126..cf841b2 100644 --- a/commands/choose.js +++ b/commands/choose.js @@ -7,7 +7,7 @@ module.exports = { options: [...Array(10).keys()].map(i => ({ name: `option${i + 1}`, description: 'Another option', - required: false, + required: i === 0, type: Constants.ApplicationCommandOptionTypes.STRING })), diff --git a/commands/nom.js b/commands/nom.js index 7d9dfc1..c2ea792 100644 --- a/commands/nom.js +++ b/commands/nom.js @@ -10,7 +10,7 @@ const gifchoices = [ module.exports = { name: require('path').parse(__filename).name, - description: 'Noms an user!', + description: 'Noms a user!', options: [{ name: 'user', description: 'The user to nom', diff --git a/commands/reload.js b/commands/reload.js index efa7c12..26daa67 100644 --- a/commands/reload.js +++ b/commands/reload.js @@ -7,7 +7,7 @@ module.exports = { options: [...Array(10).keys()].map(i => ({ name: `option${i + 1}`, description: 'Another option', - required: false, + required: i === 0, type: Constants.ApplicationCommandOptionTypes.STRING })), diff --git a/commands/slap.js b/commands/slap.js index ac5d86d..c57ac8c 100644 --- a/commands/slap.js +++ b/commands/slap.js @@ -3,7 +3,7 @@ const { Constants } = require('discord.js'); module.exports = { name: require('path').parse(__filename).name, - description: 'Slaps an user!', + description: 'Slaps a user!', options: [{ name: 'user', description: 'The user to slap', diff --git a/commands/snuggle.js b/commands/snuggle.js index 1eaeff7..308202b 100644 --- a/commands/snuggle.js +++ b/commands/snuggle.js @@ -9,7 +9,7 @@ const gifchoices = [ module.exports = { name: require('path').parse(__filename).name, - description: 'Snuggle an user!', + description: 'Snuggle a user!', options: [{ name: 'user', description: 'The user to snuggle', diff --git a/start.js b/start.js index b8a21d2..52af0c7 100755 --- a/start.js +++ b/start.js @@ -57,7 +57,6 @@ client.once('ready', async () => { } client.commands.forEach(async command => { - console.log(command); if (sandboxSettings.enabled && !existingLocal.map(x => x.name).includes(command.name)) { await localCommands.create(command); // console.log(`created new local command ${command.name}`);