fix blocking multiple commands

This commit is contained in:
loicbersier 2020-04-07 00:17:36 +02:00
parent a617abea3a
commit 1386bf31ca

View file

@ -30,7 +30,7 @@ class commandblockCommand extends Command {
async exec(message, args) {
if (args.command.id == 'commandblock') return message.channel.send('Whoa there, i can\'t let you block this command or else how would you unblock it?');
const blocked = await commandblock.findOne({where: {serverID: message.guild.id}});
const blocked = await commandblock.findOne({where: {serverID: message.guild.id, command: args.command.id}});
if (!blocked) {
const body = {serverID: message.guild.id, command: args.command.id};