fixed object stuff

This commit is contained in:
Emily 2020-10-10 19:37:11 +11:00
parent 2f8c23eb6b
commit cfa2f53f56
1 changed files with 3 additions and 3 deletions

View File

@ -3,9 +3,9 @@ const Command = require("../../base/Command.js");
class Help extends Command { class Help extends Command {
constructor (client) { constructor (client) {
super(client, { super(client, {
description = "Lists what commands Woomy has, what they do, and how to use them.", description: "Lists what commands Woomy has, what they do, and how to use them.",
usage = "'`help` - Lists all commands.\n`help <command>` - Shows detailed information on a specific command.'", usage: "'`help` - Lists all commands.\n`help <command>` - Shows detailed information on a specific command.'",
aliases = ["cmds"] aliases: ["cmds"],
}); });
} }