2020-04-17 17:23:13 +02:00
|
|
|
const { Inhibitor } = require('../../../interfaces/');
|
2020-04-16 14:37:04 +02:00
|
|
|
|
|
|
|
class GuildOnly extends Inhibitor {
|
|
|
|
|
|
|
|
constructor(client) {
|
|
|
|
|
|
|
|
super(client, {
|
|
|
|
name: 'guildOnly',
|
|
|
|
priority: 12,
|
|
|
|
guarded: true
|
|
|
|
});
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
execute(message, command) {
|
|
|
|
if(command.guildOnly && !message.guild) {
|
2020-05-25 13:13:34 +02:00
|
|
|
return super._fail();
|
2020-05-21 12:47:58 +02:00
|
|
|
}
|
|
|
|
return super._succeed();
|
|
|
|
|
2020-04-16 14:37:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = GuildOnly;
|