From e48e995df274cf0ef6eb96c769702976585b5f4e Mon Sep 17 00:00:00 2001 From: Bxio Date: Thu, 1 May 2025 23:31:36 +0100 Subject: [PATCH] --- src/commands/Community/meta.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/commands/Community/meta.js b/src/commands/Community/meta.js index 005a300..b2e7b1d 100644 --- a/src/commands/Community/meta.js +++ b/src/commands/Community/meta.js @@ -46,7 +46,7 @@ const { }); }); - await interaction.editReply({ embeds: [embed] }); + await interaction.reply({ embeds: [embed] }); } catch (error) { console.error('Erro ao buscar usuários:', error); @@ -54,7 +54,7 @@ const { } - + try { const userId = interaction.user.id; const [rows] = await conn.query('SELECT meta FROM users WHERE discord_id = ?', [userId]);