From eab0c2ecd6e0f5d3d7cd6b21cc4f6aa3210f61d6 Mon Sep 17 00:00:00 2001 From: Bxio Date: Sun, 27 Apr 2025 18:00:07 +0100 Subject: [PATCH] --- src/commands/Community/lista_membros.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/Community/lista_membros.js b/src/commands/Community/lista_membros.js index 0c6fc41..af983b9 100644 --- a/src/commands/Community/lista_membros.js +++ b/src/commands/Community/lista_membros.js @@ -38,7 +38,7 @@ try { // Adicionando as linhas de dados à tabela rows.forEach(row => { - table.addRow(row.discord_id, `<@ ${row.discord_username}>`, row.cargo); + table.addRow(row.discord_id, `<@${row.discord_username}>`, row.cargo); }); let tabelaString = table.toString();