From fcb7776f60f6c87d0572832b8ba30e90255a0c59 Mon Sep 17 00:00:00 2001 From: Supositware Date: Sun, 18 Dec 2022 23:00:08 +0100 Subject: [PATCH] Fix cooldown display --- events/client/messageCreate.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/events/client/messageCreate.js b/events/client/messageCreate.js index a048627..f0236ad 100644 --- a/events/client/messageCreate.js +++ b/events/client/messageCreate.js @@ -327,7 +327,7 @@ export default { } if (command.ratelimit === ratelimit[userID][commandName].limit) { - return await message.reply({ content: `You are being rate limited. You can try again in ${Math.floor((ratelimit[userID][commandName].cooldown - date) / 1000)} seconds.`, ephemeral: true }); + return await message.reply({ content: `You are being rate limited. You can try again in ${Math.floor((ratelimit[userID][commandName].cooldown - date) / 1000)}huh seconds.`, ephemeral: true }); } }