diff --git a/commands/commit-count.js b/commands/commit-count.js index bc06eb5..84a3fa8 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'; + verifyReason = `Commit URL - ${message.id}`; } else if ((message.attachments.size > 0) && verifyReason != 'Commit URL') { dateVerified = true; - verifyReason = 'Attachment'; + verifyReason = `Attachment - ${message.id}`; } 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'; + verifyReason = `Reaction - ${message.id}`; break; } }