galactic-bot/structure/client/components/inhibitors/Disabled.js
2020-07-27 20:00:24 -07:00

30 lines
759 B
JavaScript

const { Inhibitor } = require('../../../interfaces/');
class Disabled extends Inhibitor {
constructor(client) {
super(client, {
name: 'disabled',
priority: 9,
silent: true
});
Object.defineProperty(this, 'client', { value: client });
}
execute(message, command) {
if(command.disabled) return super._fail({ modifier: message.format('I_DISABLED_ERRORMODIFIER', { globally: true }, true) });
if(message.guild._settings.disabledCommands.includes(command.resolveable)) {
return super._fail({ modifier: message.format('I_DISABLED_ERRORMODIFIER', { globally: false }, true) });
}
return super._succeed();
}
}
module.exports = Disabled;