added some new fields for help
This commit is contained in:
parent
7f6d54f14b
commit
7464316789
17 changed files with 88 additions and 51 deletions
22
bot/commands/Moderation/kick.js
Normal file
22
bot/commands/Moderation/kick.js
Normal file
|
@ -0,0 +1,22 @@
|
|||
module.exports = class {
|
||||
constructor (name, category) {
|
||||
this.name = name,
|
||||
this.category = category,
|
||||
this.enabled = true,
|
||||
this.devOnly = false,
|
||||
this.aliases = [],
|
||||
this.userPerms = [],
|
||||
this.botPerms = [],
|
||||
this.cooldown = 2000,
|
||||
this.help = {
|
||||
description: '',
|
||||
arguments: '',
|
||||
details: '',
|
||||
examples: ''
|
||||
};
|
||||
}
|
||||
|
||||
run (client, message, args, data) { //eslint-disable-line no-unused-vars
|
||||
|
||||
}
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue