Haha-Yes/event/inhibitors/blacklist.js
2019-09-09 02:13:03 +02:00

16 lines
No EOL
456 B
JavaScript

const { Inhibitor } = require('discord-akairo');
class BlacklistInhibitor extends Inhibitor {
constructor() {
super('blacklist', {
reason: 'blacklist'
});
}
async exec(message) {
const blacklist = ['501856229123948545', '497730155691638784', '29476879240658944', '530399670728392737', '595102888796356628', '342039250302140418', '319180626928336896'];
return blacklist.includes(message.author.id);
}
}
module.exports = BlacklistInhibitor;