Skip to content
This repository has been archived by the owner on Jan 30, 2024. It is now read-only.

Commit

Permalink
Mostly finish help refactor. Check desc for more info
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
IDeletedSystem64 committed Aug 11, 2022
1 parent 95a7df9 commit ca3e1dd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions commands/help.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
}],
Expand All @@ -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(', ') }
]
}]
};
Expand Down

0 comments on commit ca3e1dd

Please sign in to comment.