2020-03-18 02:28:29 +01:00
|
|
|
const { Inhibitor } = require('discord-akairo');
|
|
|
|
const commandblock = require('../../models').commandBlock;
|
|
|
|
|
|
|
|
class commandblockInhibitor extends Inhibitor {
|
|
|
|
constructor() {
|
|
|
|
super('commandblock', {
|
|
|
|
reason: 'commandblock'
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
async exec(message, command) {
|
2020-03-19 15:44:00 +01:00
|
|
|
if (message.channel.type == 'dm' || message.author.id == this.client.ownerID || message.member.hasPermission('ADMINISTRATOR')) return false;
|
2020-03-18 02:28:29 +01:00
|
|
|
const blacklist = await commandblock.findOne({where: {serverID:message.guild.id, command: command.id}});
|
|
|
|
|
|
|
|
if (blacklist) return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = commandblockInhibitor;
|