From 96adb87886f8399fc03b10ceaf8b619b03938c8b Mon Sep 17 00:00:00 2001 From: Rodi Date: Sun, 12 Feb 2023 16:01:27 +0000 Subject: [PATCH] fix: correctly import events Events are currently incorrectly imported (there is no '../../util/Events'). --- 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 199e134..6dae43b 100644 --- a/src/client/actions/GuildAuditLogEntryCreate.js +++ b/src/client/actions/GuildAuditLogEntryCreate.js @@ -2,7 +2,7 @@ const Action = require('./Action'); const GuildAuditLogsEntry = require('../../structures/GuildAuditLogs').Entry; -const Events = require('../../util/Events'); +const { Events } = require('../../util/Constants'); class GuildAuditLogEntryCreateAction extends Action { handle(data) {