Add permission checks

This commit is contained in:
1computer1 2019-03-12 12:51:10 -04:00
parent c82f396301
commit 4b950e9689
7 changed files with 17 additions and 4 deletions

View file

@ -3,7 +3,8 @@ const { Command } = require('discord-akairo');
class AboutCommand extends Command {
constructor() {
super('about', {
aliases: ['about']
aliases: ['about'],
clientPermissions: ['SEND_MESSAGES']
});
}