Add different message
This commit is contained in:
parent
dcdb25315e
commit
a457930fa5
1 changed files with 14 additions and 1 deletions
|
@ -10,7 +10,20 @@ class CommandBlockedListener extends Listener {
|
||||||
|
|
||||||
exec(message, command, reason) {
|
exec(message, command, reason) {
|
||||||
console.log(`${message.author.username} was blocked from using ${command.id} because of ${reason}!`);
|
console.log(`${message.author.username} was blocked from using ${command.id} because of ${reason}!`);
|
||||||
return message.reply(`You can't use this command beacause of ${reason}`);
|
switch(reason) {
|
||||||
|
case "Owner":
|
||||||
|
message.reply('Nice try but you aren\'t the owner <a:memed:433320880135733248>');
|
||||||
|
break;
|
||||||
|
case "clientPermissions":
|
||||||
|
message.reply('Im missing the required permissions for this command!');
|
||||||
|
break;
|
||||||
|
case "userPermissions":
|
||||||
|
message.reply('You are missing some permissions to use this command!');
|
||||||
|
break;
|
||||||
|
case "blacklist":
|
||||||
|
message.reply('You can\'t use this command because you have been blacklisted!')
|
||||||
|
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue