Remove useless console.log that caused issue

This commit is contained in:
Supositware 2022-12-19 04:45:33 +01:00
parent 0c793d73a6
commit 5311aa5847

View file

@ -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 });
}