diff --git a/src/commands/Community/lista_membros.js b/src/commands/Community/lista_membros.js index 7894b16..ed3d72a 100644 --- a/src/commands/Community/lista_membros.js +++ b/src/commands/Community/lista_membros.js @@ -51,17 +51,17 @@ try { let tabelaSemBorda = linhas.join('\n'); // Criando o embed para mostrar a tabela - const embed = new EmbedBuilder() - .setTitle('📋 Informações dos Membros') - .setColor('Green') - .setDescription(` - \`\`\` - ${tabelaSemBorda} - \`\`\` - `) - .setFooter({ text: 'Adicionado à base de dados ✅' }); + // const embed = new EmbedBuilder() + // .setTitle('📋 Informações dos Membros') + // .setColor('Green') + // .setDescription(` + // \`\`\` + // ${tabelaSemBorda} + // \`\`\` + // `) + // .setFooter({ text: 'Adicionado à base de dados ✅' }); - await interaction.editReply({ embeds: [embed] }); + // await interaction.editReply({ embeds: [embed] }); await interaction.editReply(`\`\`\`${tabelaSemBorda}\`\`\``); @@ -73,18 +73,6 @@ try { } -const embed = new EmbedBuilder() - .setAuthor({ - name: "Info", - url: "https://example.com", - }) - .setTitle("Example Title") - .setURL("https://example.com") - .setDescription("This is an example description. Markdown works too!\n\nhttps://automatic.links\n> Block Quotes\n```\nCode Blocks\n```\n*Emphasis* or _emphasis_\n`Inline code` or ``inline code``\n[Links](https://example.com)\n<@123>, <@!123>, <#123>, <@&123>, @here, @everyone mentions\n||Spoilers||\n~~Strikethrough~~\n**Strong**\n__Underline__\n\n<@1356975383811068031> » Meta: Carvão: `1,231` Carvão: `123,231`\n<@428524753213456385> » Meta: Carvão: `1,231` Carvão: `123,231`") - .setColor("#00b0f4"); - -await interaction.editReply({ embeds: [embed] }); - },