From ecfb0f4310b7abbc1ac32409e1048dd72ed0569f Mon Sep 17 00:00:00 2001 From: Michael Date: Mon, 30 Dec 2024 18:00:18 -0600 Subject: [PATCH] Debugging --- commands/commit-count.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/commands/commit-count.js b/commands/commit-count.js index 84a3fa8..2233282 100644 --- a/commands/commit-count.js +++ b/commands/commit-count.js @@ -134,11 +134,11 @@ module.exports = { /http.:\/\/.*\/(commit|compare|pull)\/.*/g.test(message.content) ) { dateVerified = true; - verifyReason = `Commit URL - ${message.id}`; + verifyReason = `Commit URL - ${message.id} - ${date}`; } else if ((message.attachments.size > 0) && verifyReason != 'Commit URL') { dateVerified = true; - verifyReason = `Attachment - ${message.id}`; + verifyReason = `Attachment - ${message.id} - ${date}`; } else if ((message.reactions.cache.size > 0) && verifyReason != 'Commit URL' && verifyReason != 'Attachment') { for (const reaction of message.reactions.cache.values()) { @@ -146,7 +146,7 @@ module.exports = { if (emojiName === emojiCheck) { dateVerified = true; - verifyReason = `Reaction - ${message.id}`; + verifyReason = `Reaction - ${message.id} - ${date}`; break; } }