1
0
Fork 0

added random message when people try to execute a command for the owner and added a break; i forgot

akairo
loicbersier 6 years ago
parent 362e07652e
commit b821dbb390

@ -12,7 +12,9 @@ class CommandBlockedListener extends Listener {
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}!`);
switch(reason) { switch(reason) {
case "Owner": case "Owner":
message.reply('Nice try but you aren\'t the owner <a:memed:433320880135733248>'); let ownerMessage = ["Nice try but you aren't the owner <a:memed:433320880135733248>", "LOADING SUPER SECRET COMMAND <a:loadingmin:527579785212329984> Wait a minute... you aren't the owner!", "uhm, how about no"];
let ownerMessage = ownerMessage[Math.floor( Math.random() * ownerMessage.length )];
message.reply(ownerMessage);
break; break;
case "clientPermissions": case "clientPermissions":
message.reply('Im missing the required permissions for this command!'); message.reply('Im missing the required permissions for this command!');
@ -21,7 +23,8 @@ class CommandBlockedListener extends Listener {
message.reply('You are missing some permissions to use this command!'); message.reply('You are missing some permissions to use this command!');
break; break;
case "blacklist": case "blacklist":
message.reply('You can\'t use this command because you have been blacklisted!') message.reply('You can\'t use this command because you have been blacklisted!');
break;
} }
} }

Loading…
Cancel
Save