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; } }