Merge branch 'master' of https://gitlab.com/loicbersier/discordbot
This commit is contained in:
commit
e13f483866
3 changed files with 3 additions and 3 deletions
|
@ -27,7 +27,7 @@ class serverBlacklistCommand extends Command {
|
||||||
}
|
}
|
||||||
|
|
||||||
async exec(message, args) {
|
async exec(message, args) {
|
||||||
const blacklist = await guildBlacklist.findOne({where: {guildID:message.author.id}});
|
const blacklist = await guildBlacklist.findOne({where: {guildID:args.guildID}});
|
||||||
|
|
||||||
if (!blacklist) {
|
if (!blacklist) {
|
||||||
const body = {guildID: args.guildID};
|
const body = {guildID: args.guildID};
|
||||||
|
|
|
@ -30,7 +30,7 @@ class guildCreateListener extends Listener {
|
||||||
.setFooter(`I'm now in ${this.client.guilds.cache.size} servers!`)
|
.setFooter(`I'm now in ${this.client.guilds.cache.size} servers!`)
|
||||||
.setTimestamp();
|
.setTimestamp();
|
||||||
|
|
||||||
const blacklist = await userBlacklist.findOne({where: {userID:guild.owner.id}});
|
const blacklist = await userBlacklist.findOne({where: {userID:guild.id}});
|
||||||
|
|
||||||
if (blacklist) {
|
if (blacklist) {
|
||||||
guild.leave();
|
guild.leave();
|
||||||
|
|
|
@ -32,7 +32,7 @@ class guildCreateListener extends Listener {
|
||||||
.setFooter(`I'm now in ${this.client.guilds.cache.size} servers!`)
|
.setFooter(`I'm now in ${this.client.guilds.cache.size} servers!`)
|
||||||
.setTimestamp();
|
.setTimestamp();
|
||||||
|
|
||||||
const blacklist = await userBlacklist.findOne({where: {userID:guild.owner.id}});
|
const blacklist = await userBlacklist.findOne({where: {userID:guild.id}});
|
||||||
|
|
||||||
if (blacklist) {
|
if (blacklist) {
|
||||||
guild.leave();
|
guild.leave();
|
||||||
|
|
Loading…
Reference in a new issue