kind of need this (unfinished (not even started))
This commit is contained in:
parent
df91191cf3
commit
2503b1a18a
1 changed files with 17 additions and 0 deletions
17
bot/commands/Core/help.js
Normal file
17
bot/commands/Core/help.js
Normal file
|
@ -0,0 +1,17 @@
|
|||
const Command = require("../../base/Command.js");
|
||||
|
||||
class Help extends Command {
|
||||
constructor (client) {
|
||||
super(client, {
|
||||
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.'",
|
||||
aliases = ["cmds"]
|
||||
});
|
||||
}
|
||||
|
||||
async run (message, args, level) { // eslint-disable-line no-unused-vars
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = Help;
|
Loading…
Reference in a new issue