2018-12-30 01:20:24 +01:00
|
|
|
const { Inhibitor } = require('discord-akairo');
|
2019-10-06 20:29:42 +02:00
|
|
|
const userBlacklist = require('../../models').userBlacklist;
|
2018-12-30 01:20:24 +01:00
|
|
|
|
|
|
|
class BlacklistInhibitor extends Inhibitor {
|
2019-01-02 08:09:45 +01:00
|
|
|
constructor() {
|
|
|
|
super('blacklist', {
|
|
|
|
reason: 'blacklist'
|
|
|
|
});
|
|
|
|
}
|
2018-12-30 01:20:24 +01:00
|
|
|
|
2019-01-19 19:01:41 +01:00
|
|
|
async exec(message) {
|
2019-10-06 20:29:42 +02:00
|
|
|
//const blacklist = ['501856229123948545', '497730155691638784', '29476879240658944', '530399670728392737', '595102888796356628', '342039250302140418', '319180626928336896', '476412819278004236'];
|
|
|
|
|
|
|
|
const blacklist = await userBlacklist.findOne({where: {userID:message.author.id}});
|
|
|
|
|
|
|
|
if (blacklist) return true;
|
2019-01-02 08:09:45 +01:00
|
|
|
}
|
2018-12-30 01:20:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = BlacklistInhibitor;
|