From 808fbef11b96aa5f259dfab9452fc2caaf1d8bdc Mon Sep 17 00:00:00 2001 From: syntaxbullet Date: Tue, 23 Dec 2025 18:44:17 +0100 Subject: [PATCH] fix: allow included mentions on payment --- src/commands/economy/pay.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/economy/pay.ts b/src/commands/economy/pay.ts index b8a143a..c9475fe 100644 --- a/src/commands/economy/pay.ts +++ b/src/commands/economy/pay.ts @@ -55,7 +55,7 @@ export const pay = createCommand({ .setColor("Green") .setTimestamp(); - await interaction.editReply({ embeds: [embed], content: `<@${receiverId}>` }); + await interaction.editReply({ embeds: [embed], allowedMentions: { users: [receiverId] } }); } catch (error: any) { if (error instanceof UserError) {