diff --git a/src/commands/Community/testeadd.js b/src/commands/Community/testeadd.js index 2944750..285025b 100644 --- a/src/commands/Community/testeadd.js +++ b/src/commands/Community/testeadd.js @@ -71,7 +71,7 @@ module.exports = { // Verificar se o guildId já existe na base de dados const checkQuery = `SELECT * FROM Guilds WHERE guildId = '${guildId}'`; const [checkRows] = await conn.execute(checkQuery); - console.log(checkRows); // Log the result + //console.log(checkRows); // Log the result if (checkRows.length > 0) { // Já existe um guildId na tabela, você pode retornar uma resposta indicando a duplicação interaction.editReply('❌ Este guildId já está registrado.');