This commit is contained in:
Bxio 2025-05-01 23:31:36 +01:00
parent 0f93ef71e8
commit e48e995df2

View File

@ -46,7 +46,7 @@ const {
}); });
}); });
await interaction.editReply({ embeds: [embed] }); await interaction.reply({ embeds: [embed] });
} catch (error) { } catch (error) {
console.error('Erro ao buscar usuários:', error); console.error('Erro ao buscar usuários:', error);
@ -54,7 +54,7 @@ const {
} }
try { try {
const userId = interaction.user.id; const userId = interaction.user.id;
const [rows] = await conn.query('SELECT meta FROM users WHERE discord_id = ?', [userId]); const [rows] = await conn.query('SELECT meta FROM users WHERE discord_id = ?', [userId]);