Don't show page number on help with specific commands
All checks were successful
CI / CI (push) Successful in 1m28s
All checks were successful
CI / CI (push) Successful in 1m28s
This commit is contained in:
parent
6f8dd7ebf6
commit
1fd5f6cc6a
1 changed files with 1 additions and 1 deletions
|
@ -60,6 +60,7 @@ module.exports = {
|
||||||
start++;
|
start++;
|
||||||
}
|
}
|
||||||
}else if(args[0] === command.name){
|
}else if(args[0] === command.name){
|
||||||
|
fieldName = "Description";
|
||||||
commands = commands + `${prefix}${command.name}\n`
|
commands = commands + `${prefix}${command.name}\n`
|
||||||
embed.setTitle(command.name.charAt(0).toUpperCase() + command.name.slice(1))
|
embed.setTitle(command.name.charAt(0).toUpperCase() + command.name.slice(1))
|
||||||
if(command.moreHelp){
|
if(command.moreHelp){
|
||||||
|
@ -67,7 +68,6 @@ module.exports = {
|
||||||
commands = commands + `${element}\n`
|
commands = commands + `${element}\n`
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
fieldName = "Description";
|
|
||||||
commands = commands + `${command.description}`;
|
commands = commands + `${command.description}`;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Add table
Reference in a new issue