2020-04-17 17:23:13 +02:00
|
|
|
const { Inhibitor } = require('../../../interfaces/');
|
2020-04-16 14:37:04 +02:00
|
|
|
|
|
|
|
class Disabled extends Inhibitor {
|
|
|
|
|
|
|
|
constructor(client) {
|
|
|
|
|
|
|
|
super(client, {
|
|
|
|
name: 'disabled',
|
|
|
|
priority: 9
|
|
|
|
});
|
|
|
|
|
|
|
|
Object.defineProperty(this, 'client', { value: client });
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
execute(message, command) {
|
|
|
|
|
2020-05-25 13:13:34 +02:00
|
|
|
if(command.disabled && message.author.id !== this.client._options.bot.owner) return super._fail({ globally: '' });
|
2020-05-21 12:47:58 +02:00
|
|
|
return super._succeed();
|
2020-04-16 14:37:04 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2020-05-21 12:47:58 +02:00
|
|
|
module.exports = Disabled;
|