Some fixes
This commit is contained in:
parent
40223ec8b5
commit
51e06c256a
2 changed files with 1 additions and 2 deletions
|
@ -18,7 +18,6 @@ class DogCommand extends Command {
|
|||
|
||||
static description = "Gets a random dog picture";
|
||||
static aliases = ["doggos", "doggo", "pupper", "puppers", "dogs", "puppy", "puppies", "pups", "pup"];
|
||||
static arguments = ["{number}"];
|
||||
}
|
||||
|
||||
module.exports = DogCommand;
|
|
@ -39,7 +39,7 @@ class HelpCommand extends Command {
|
|||
"inline": true
|
||||
}, {
|
||||
"name": "Parameters",
|
||||
"value": command === "tags" ? "[name]" : (info.params ? (typeof info.params === "object" ? info.params.join(" ") : info.params) : "None"),
|
||||
"value": command === "tags" ? "[name]" : (info.params ? (info.params.length !== 0 ? info.params.join(" ") : "None") : "None"),
|
||||
"inline": true
|
||||
}]
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue