Event, guildMemberRemove is emitted when someone got banned

The document says the event is emitted when a member left or kicked, but it is also emitted when someone got banned. The document or me which is wrong?
client.on("guildMemberRemove", async member => {
console.log("Someone left or kicked");
})
//it is also emitted when someone got banned.
client.on("guildMemberRemove", async member => {
console.log("Someone left or kicked");
})
//it is also emitted when someone got banned.
No description
3 Replies
d.js toolkit
d.js toolkit6mo ago
- What's your exact discord.js npm list discord.js and node node -v version? - Not a discord.js issue? Check out #other-js-ts. - Consider reading #how-to-get-help to improve your question! - Explain what exactly your issue is. - Post the full error stack trace, not just the top part! - Show your code! - Issue solved? Press the button! - Marked as resolved by OP
treble/luna
treble/luna6mo ago
It also fires when a member is banned
Ropyle
Ropyle6mo ago
I got it! Thanks for your answers!