mark as guild only

This commit is contained in:
Emily 2020-10-18 19:27:51 +11:00
parent 994214646a
commit 76be4e7360
2 changed files with 4 additions and 2 deletions

View File

@ -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
});
}

View File

@ -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
});
}