diff --git a/main.ts b/main.ts index af348a9..8f2e474 100644 --- a/main.ts +++ b/main.ts @@ -102,7 +102,7 @@ function replyMessage(message, correctedMessage, abbrsUsed) { plural = abbrsUsed + " acronyms" } if (stringLength > 2000) { - replyString = "Sorry, I detected " + plural + "but the resultant response was " + stringLength + " characters long, and Discord only allows a maximum of 2000." + replyString = "Sorry, I detected " + plural + ", but the resultant response was " + stringLength + " characters long, and Discord only allows a maximum of 2000." } message.reply({content: replyString, allowedMentions: { repliedUser: false }});