From 423a4095bfd2247b7a3ccd0ecb869b67ff94392b Mon Sep 17 00:00:00 2001 From: SileNce5k Date: Fri, 6 Aug 2021 19:03:05 +0200 Subject: [PATCH] Fix plural when multiple modules are added --- util/calculateReloaded.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/calculateReloaded.js b/util/calculateReloaded.js index 370b000..4baf9ad 100644 --- a/util/calculateReloaded.js +++ b/util/calculateReloaded.js @@ -11,7 +11,7 @@ module.exports = function(beforeSize, client){ if (difference == 1) sendText = `${difference} module was added, and a total of ${client.commands.size} were reloaded.` else - sendText = `${difference} module were added, and a total of ${client.commands.size} were reloaded.` + sendText = `${difference} modules were added, and a total of ${client.commands.size} were reloaded.` } else if (beforeSize === client.commands.size) { sendText = `${client.commands.size} modules were reloaded.` }