blacklisted wrong user

This commit is contained in:
Loïc Bersier 2019-05-11 20:56:36 +02:00
parent a589016041
commit e660b238a4

View file

@ -8,7 +8,7 @@ class BlacklistInhibitor extends Inhibitor {
}
async exec(message) {
const blacklist = ['501856229123948545', '497730155691638784', '215681880899584000', '29476879240658944'];
const blacklist = ['501856229123948545', '497730155691638784', '29476879240658944'];
return blacklist.includes(message.author.id);
}
}