oops forgot to turn on linter
This commit is contained in:
parent
bd38870c44
commit
823c1d4de8
9 changed files with 103 additions and 103 deletions
|
@ -2,19 +2,19 @@ module.exports = class Command {
|
|||
constructor (name, category) {
|
||||
// Gateway stuff
|
||||
this.name = name,
|
||||
this.description = "No description provided.",
|
||||
this.description = 'No description provided.',
|
||||
this.options = [],
|
||||
this.permissions = {
|
||||
DEFAULT_MEMBER_PERMISSIONS: "SendMessages"
|
||||
}
|
||||
DEFAULT_MEMBER_PERMISSIONS: 'SendMessages'
|
||||
};
|
||||
this.dm_permission = false,
|
||||
// Extra stuff Woomy uses internally
|
||||
this.category = category,
|
||||
this.usage = "No usage information provided.",
|
||||
this.friendlyOptions = "No options provided."
|
||||
this.usage = 'No usage information provided.',
|
||||
this.friendlyOptions = 'No options provided.',
|
||||
this.enabled = true,
|
||||
this.devOnly = false,
|
||||
this.cooldown = 2000
|
||||
this.cooldown = 2000;
|
||||
}
|
||||
|
||||
run (client, interaction, data) { //eslint-disable-line no-unused-vars
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue