update
This commit is contained in:
parent
62966c9893
commit
5651744445
1 changed files with 12 additions and 11 deletions
|
@ -14,7 +14,9 @@ module.exports = (commands, prefix) => {
|
|||
|
||||
const commandsArr = [];
|
||||
|
||||
commands.filter(cmd => cmd.category === category).map(cmd => {
|
||||
commands
|
||||
.filter(cmd => cmd.category === category)
|
||||
.map(cmd => {
|
||||
const obj = {
|
||||
commandName: cmd.name,
|
||||
commandUsage: `${cmd.usage ? cmd.usage : `${prefix}${cmd.name}`}`,
|
||||
|
@ -24,7 +26,6 @@ module.exports = (commands, prefix) => {
|
|||
commandsArr.push(obj);
|
||||
});
|
||||
|
||||
|
||||
const categoryObj = {
|
||||
categoryId: category,
|
||||
category: `${capitalizeFirstLetter(category)}`,
|
||||
|
|
Loading…
Reference in a new issue