From 7022900eff24643ee036866b0fb43e8939ff06da Mon Sep 17 00:00:00 2001 From: MyungHyun Date: Thu, 9 Apr 2026 12:52:29 +0900 Subject: [PATCH] fix(fishing): use editReply for deferred slash responses --- src/commands/fishing.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/commands/fishing.ts b/src/commands/fishing.ts index e693a96..5409c09 100644 --- a/src/commands/fishing.ts +++ b/src/commands/fishing.ts @@ -221,7 +221,7 @@ export default { embed.setDescription(t(locale, 'commands.fishing.profileEmpty')); } - await interaction.reply({ embeds: [embed], ephemeral: true }); + await interaction.editReply({ embeds: [embed] }); return; } @@ -236,7 +236,7 @@ export default { if (!collection.length) { embed.setDescription(t(locale, 'commands.fishing.dexEmpty')); - await interaction.reply({ embeds: [embed], ephemeral: true }); + await interaction.editReply({ embeds: [embed] }); return; } @@ -254,7 +254,7 @@ export default { }); } - await interaction.reply({ embeds: [embed], ephemeral: true }); + await interaction.editReply({ embeds: [embed] }); return; } @@ -267,7 +267,7 @@ export default { if (!ranking.length) { embed.setDescription(t(locale, 'commands.fishing.rankingEmpty')); - await interaction.reply({ embeds: [embed], ephemeral: true }); + await interaction.editReply({ embeds: [embed] }); return; } @@ -285,7 +285,7 @@ export default { }); } - await interaction.reply({ embeds: [embed], ephemeral: true }); + await interaction.editReply({ embeds: [embed] }); } }, };