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.
This commit is contained in:
IDeletedSystem64 2022-08-11 16:38:30 -05:00
parent 95a7df98b3
commit ca3e1dd37e
1 changed files with 2 additions and 2 deletions

View File

@ -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(', ') }
]
}]
};