diff --git a/src/commands/Community/lista_membros.js b/src/commands/Community/lista_membros.js index 35ef83f..2ccf1da 100644 --- a/src/commands/Community/lista_membros.js +++ b/src/commands/Community/lista_membros.js @@ -52,7 +52,17 @@ ${nome.username} | ${cargo} | ${nome.id} await interaction.editReply({ embeds: [embed] }); +const tabela = ` +\`\`\` +| Nome | Pontos | Rank | +|------------|--------|------| +| Jogador1 | 1200 | Ouro | +| Jogador2 | 950 | Prata| +| Jogador3 | 700 | Bronze| +\`\`\` +`; +await interaction.editReply(tabela); },