From fb1fd256434cf5dc06486931a5a31c5be8264a8f Mon Sep 17 00:00:00 2001 From: Cynthia Foxwell Date: Wed, 23 Apr 2025 22:53:20 -0600 Subject: [PATCH] logging: forgot to change color on thread delete --- src/modules/logging.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/logging.js b/src/modules/logging.js index 1c25c5c..46ab5ac 100644 --- a/src/modules/logging.js +++ b/src/modules/logging.js @@ -220,7 +220,7 @@ events.add("guildAuditLogEntryCreate", "logging", async function (entry) { .createMessage({ embeds: [ { - color: COLOR_ADDED, + color: COLOR_REMOVED, title: `${entry.before.invitable != null ? "Private " : ""}Thread Deleted`, description: `<#${entry.targetID}> (${entry.before.name})`, timestamp: new Date().toISOString(),