28 |
Intents.FLAGS.DIRECT_MESSAGE_TYPING, |
Intents.FLAGS.DIRECT_MESSAGE_TYPING, |
29 |
Intents.FLAGS.GUILD_PRESENCES, |
Intents.FLAGS.GUILD_PRESENCES, |
30 |
Intents.FLAGS.GUILD_MEMBERS, |
Intents.FLAGS.GUILD_MEMBERS, |
31 |
|
Intents.FLAGS.GUILD_BANS |
32 |
] |
] |
33 |
}); |
}); |
34 |
|
|
86 |
}); |
}); |
87 |
|
|
88 |
this.on("messageUpdate", async (oldMessage, newMessage) => { |
this.on("messageUpdate", async (oldMessage, newMessage) => { |
89 |
if (oldMessage.author.bot) |
if (oldMessage.author.bot || oldMessage.content === newMessage.content) |
90 |
return; |
return; |
91 |
|
|
92 |
await this.logger.logEdit(oldMessage, newMessage); |
await this.logger.logEdit(oldMessage, newMessage); |
93 |
}); |
}); |
94 |
|
|
95 |
|
|
96 |
|
this.on('guildBanAdd', async (ban) => { |
97 |
|
console.log('test'); |
98 |
|
await this.logger.logBanned(ban); |
99 |
|
}); |
100 |
|
|
101 |
|
this.on('guildBanRemove', async (ban) => { |
102 |
|
console.log('test'); |
103 |
|
await this.logger.logUnbanned(ban); |
104 |
|
}); |
105 |
|
|
106 |
this.on("messageDelete", async (message) => { |
this.on("messageDelete", async (message) => { |
107 |
if (message.author.bot) |
if (message.author.bot) |
108 |
return; |
return; |
130 |
this.on('guildMemberAdd', async (member) => { |
this.on('guildMemberAdd', async (member) => { |
131 |
console.log('Joined'); |
console.log('Joined'); |
132 |
await this.antiRaid.start(member); |
await this.antiRaid.start(member); |
133 |
|
await this.logger.logJoined(member); |
134 |
|
}); |
135 |
|
|
136 |
|
this.on('guildMemberRemove', async (member) => { |
137 |
|
await this.logger.logLeft(member); |
138 |
}); |
}); |
139 |
} |
} |
140 |
|
|