diff --git a/event/inhibitors/commandBlock.js b/event/inhibitors/commandBlock.js index 16086523..fc7d2861 100644 --- a/event/inhibitors/commandBlock.js +++ b/event/inhibitors/commandBlock.js @@ -9,7 +9,7 @@ class commandblockInhibitor extends Inhibitor { } async exec(message, command) { - if (message.channel.type == 'dm') return false; + if (message.channel.type == 'dm' || message.author.id == this.client.ownerID) return false; const blacklist = await commandblock.findOne({where: {serverID:message.guild.id, command: command.id}}); if (blacklist) return true;