fix: Display target user mention in pay success message.

This commit is contained in:
syntaxbullet
2025-12-08 10:36:25 +01:00
parent 866cfab03e
commit 049725c384

View File

@@ -36,7 +36,7 @@ export const pay = createCommand({
const embed = new EmbedBuilder()
.setTitle("💸 Transfer Successful")
.setDescription(`Successfully sent **${amount}** coins to ${targetUser}.`)
.setDescription(`Successfully sent **${amount}** coins to <@${targetUser.id}>.`)
.setColor("Green")
.setTimestamp();