From b833796fb9e09fed19173cca142ae3f13667a10a Mon Sep 17 00:00:00 2001 From: syntaxbullet Date: Tue, 23 Dec 2025 18:42:13 +0100 Subject: [PATCH] fix: make payments public --- 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 34a7fe5..b8a143a 100644 --- a/src/commands/economy/pay.ts +++ b/src/commands/economy/pay.ts @@ -46,7 +46,7 @@ export const pay = createCommand({ } try { - await interaction.deferReply({ ephemeral: true }); + await interaction.deferReply(); await economyService.transfer(senderId, receiverId, amount); const embed = new EmbedBuilder()