From a3a8a6ae67cf1b4f0cdc2ba4026c39ddda895be1 Mon Sep 17 00:00:00 2001 From: Elysia <71698422+aiko-chan-ai@users.noreply.github.com> Date: Sun, 19 Feb 2023 11:41:50 +0700 Subject: [PATCH] feat: v13 `guildAuditLogEntryCreate` event --- src/client/actions/GuildAuditLogEntryCreate.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/actions/GuildAuditLogEntryCreate.js b/src/client/actions/GuildAuditLogEntryCreate.js index 6dae43b..ea50f78 100644 --- a/src/client/actions/GuildAuditLogEntryCreate.js +++ b/src/client/actions/GuildAuditLogEntryCreate.js @@ -19,7 +19,7 @@ class GuildAuditLogEntryCreateAction extends Action { * @param {GuildAuditLogsEntry} auditLogEntry The entry that was created * @param {Guild} guild The guild where the entry was created */ - client.emit(Events.GuildAuditLogEntryCreate, auditLogEntry, guild); + client.emit(Events.GUILD_AUDIT_LOG_ENTRY_CREATE, auditLogEntry, guild); } return { auditLogEntry };