From ca3e1dd37e83e4530f1551eedb6fe694274a43d5 Mon Sep 17 00:00:00 2001 From: IDeletedSystem64 Date: Thu, 11 Aug 2022 16:38:30 -0500 Subject: [PATCH] Mostly finish help refactor. Check desc for more info The embed design could be hell of a lot more organized, but unfortunately I don't really want to spend the time to set up how I want to do categories for this release, so hopefully 1.4 this will be more organized. --- commands/help.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/help.js b/commands/help.js index d8d9ce2..1b9eb6d 100644 --- a/commands/help.js +++ b/commands/help.js @@ -6,7 +6,7 @@ module.exports = { description: 'Get help on anything from commands, to what the bot does! just not your homework..', options: [{ name: 'help', - description: 'View Information about this command', + description: 'The command you want information on', required: false, type: Constants.ApplicationCommandOptionTypes.STRING }], @@ -30,7 +30,7 @@ module.exports = { text: config.footerTxt }, fields: [ - { name: 'Commands', value: client.commands.map(command => command.name).join('\n') } + { name: 'Commands', value: client.commands.map(command => command.name).join(', ') } ] }] };