From 59f0f85df4bd8774e35254ae8009ea2b8dfeadc9 Mon Sep 17 00:00:00 2001 From: Supositware Date: Fri, 2 Sep 2022 09:18:39 +0200 Subject: [PATCH] Removed some useless console.log --- commands/utility/help.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/commands/utility/help.js b/commands/utility/help.js index 2a48fa8..5916601 100644 --- a/commands/utility/help.js +++ b/commands/utility/help.js @@ -55,7 +55,6 @@ export default { } if (command.alias) { - console.log(command.alias.length); if (command.alias.length >= 1) { embed.addFields({ name: 'Aliases', value: `\`${command.alias.join('` `')}\``, inline: true }); } @@ -111,7 +110,6 @@ export default { admin: '⚡\u2000Admin', }[category]; } - console.log(title); embed.addFields({ name: title, value: `\`${object[category].join('` `')}\`` }); } return interaction.reply({ embeds: [embed] });