From 5311aa5847c993e441d5506c972d6f7ba074ad5f Mon Sep 17 00:00:00 2001 From: Supositware Date: Mon, 19 Dec 2022 04:45:33 +0100 Subject: [PATCH] Remove useless console.log that caused issue --- events/client/interactionCreate.js | 1 - 1 file changed, 1 deletion(-) diff --git a/events/client/interactionCreate.js b/events/client/interactionCreate.js index 18eb863..38a2177 100644 --- a/events/client/interactionCreate.js +++ b/events/client/interactionCreate.js @@ -54,7 +54,6 @@ export default { // Check the ratelimit const doRateLimit = ratelimiter.check(interaction.user, commandName, command); if (doRateLimit) { - console.log(`\x1b[33m${userTag} (${userID})\x1b[0m is rate limited on \x1b[33m${commandName}\x1b[0m for ${ratelimiter.timeLeft(userID, commandName)} seconds`); return interaction.reply({ content: doRateLimit, ephemeral: true }); }