mirror of
https://github.com/danbulant/discord.js
synced 2026-06-09 09:42:22 +00:00
fix: guildBanRemove event name (#2983)
- "Events.GUILD_BAN_REMOVEGUILD_BAN_REMOVE" -> "Events.GUILD_BAN_REMOVE"
This commit is contained in:
parent
42505b78c1
commit
b5d5c699e6
1 changed files with 1 additions and 1 deletions
|
|
@ -14,7 +14,7 @@ class GuildBanRemove extends Action {
|
||||||
* @param {Guild} guild The guild that the unban occurred in
|
* @param {Guild} guild The guild that the unban occurred in
|
||||||
* @param {User} user The user that was unbanned
|
* @param {User} user The user that was unbanned
|
||||||
*/
|
*/
|
||||||
if (guild && user) client.emit(Events.GUILD_BAN_REMOVEGUILD_BAN_REMOVE, guild, user);
|
if (guild && user) client.emit(Events.GUILD_BAN_REMOVE, guild, user);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue