From 8071795504969bff49cbb18a75b45bd803c6af0f Mon Sep 17 00:00:00 2001 From: graphiteisaac Date: Mon, 13 Oct 2025 19:31:17 +1100 Subject: [PATCH] add closed by author ID in log message --- src/modules/close.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/close.js b/src/modules/close.js index 969fb9801..b2f6eed0e 100644 --- a/src/modules/close.js +++ b/src/modules/close.js @@ -177,7 +177,7 @@ module.exports = ({ bot, knex, config, commands }) => { await thread.close(suppressSystemMessages, silentClose); - await sendCloseNotification(thread, `Modmail thread #${thread.thread_number} with ${thread.user_name} (${thread.user_id}) was closed by ${closedBy}`); + await sendCloseNotification(thread, `Modmail thread #${thread.thread_number} with ${thread.user_name} (${thread.user_id}) was closed by ${closedBy} (${msg.author.id})`); }, { options: [ { name: "silent", shortcut: "s", isSwitch: true },