mark as guild only
This commit is contained in:
parent
994214646a
commit
76be4e7360
2 changed files with 4 additions and 2 deletions
|
@ -6,7 +6,8 @@ class Disable extends Command {
|
|||
description: 'Disables a command/category so they can\'t be used in this server.',
|
||||
usage: '`disable command [command]` - Disables the specified command.\n`disable category [category]` - Disables the specified category.',
|
||||
examples: '`disable command cuddle`\n`disable category music`',
|
||||
userPerms: ['ADMINISTRATOR']
|
||||
userPerms: ['ADMINISTRATOR'],
|
||||
guildOnly: true
|
||||
});
|
||||
}
|
||||
|
||||
|
|
|
@ -6,7 +6,8 @@ class Enable extends Command {
|
|||
description: 'Re-enables a previously disabled command/category.',
|
||||
usage: '`enable command [command]` - Enables the specified command.\n`enable category [category]` - Enables the specified category.',
|
||||
examples: '`enable command cuddle`\n`enable category music`',
|
||||
userPerms: ['ADMINISTRATOR']
|
||||
userPerms: ['ADMINISTRATOR'],
|
||||
guildOnly: true
|
||||
});
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue