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] }); } }, };