2018-12-30 01:20:24 +01:00
|
|
|
const { Listener } = require('discord-akairo');
|
|
|
|
|
|
|
|
class CommandBlockedListener extends Listener {
|
|
|
|
constructor() {
|
|
|
|
super('commandBlocked', {
|
|
|
|
emitter: 'commandHandler',
|
|
|
|
eventName: 'commandBlocked'
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
exec(message, command, reason) {
|
|
|
|
console.log(`${message.author.username} was blocked from using ${command.id} because of ${reason}!`);
|
2018-12-30 03:23:51 +01:00
|
|
|
return message.reply(`You can't use this command beacause of ${reason}`);
|
2018-12-30 01:20:24 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = CommandBlockedListener;
|