Let administrator bypass block too

This commit is contained in:
loicbersier 2020-03-19 15:44:00 +01:00
parent 69075312b1
commit a15ad3a8e9

View file

@ -9,7 +9,7 @@ class commandblockInhibitor extends Inhibitor {
}
async exec(message, command) {
if (message.channel.type == 'dm' || message.author.id == this.client.ownerID) return false;
if (message.channel.type == 'dm' || message.author.id == this.client.ownerID || message.member.hasPermission('ADMINISTRATOR')) return false;
const blacklist = await commandblock.findOne({where: {serverID:message.guild.id, command: command.id}});
if (blacklist) return true;