fix(fishing): use editReply for deferred slash responses

This commit is contained in:
안명현 2026-04-09 12:52:29 +09:00
parent 233615e6d0
commit 7022900eff
1 changed files with 5 additions and 5 deletions

View File

@ -221,7 +221,7 @@ export default {
embed.setDescription(t(locale, 'commands.fishing.profileEmpty')); embed.setDescription(t(locale, 'commands.fishing.profileEmpty'));
} }
await interaction.reply({ embeds: [embed], ephemeral: true }); await interaction.editReply({ embeds: [embed] });
return; return;
} }
@ -236,7 +236,7 @@ export default {
if (!collection.length) { if (!collection.length) {
embed.setDescription(t(locale, 'commands.fishing.dexEmpty')); embed.setDescription(t(locale, 'commands.fishing.dexEmpty'));
await interaction.reply({ embeds: [embed], ephemeral: true }); await interaction.editReply({ embeds: [embed] });
return; return;
} }
@ -254,7 +254,7 @@ export default {
}); });
} }
await interaction.reply({ embeds: [embed], ephemeral: true }); await interaction.editReply({ embeds: [embed] });
return; return;
} }
@ -267,7 +267,7 @@ export default {
if (!ranking.length) { if (!ranking.length) {
embed.setDescription(t(locale, 'commands.fishing.rankingEmpty')); embed.setDescription(t(locale, 'commands.fishing.rankingEmpty'));
await interaction.reply({ embeds: [embed], ephemeral: true }); await interaction.editReply({ embeds: [embed] });
return; return;
} }
@ -285,7 +285,7 @@ export default {
}); });
} }
await interaction.reply({ embeds: [embed], ephemeral: true }); await interaction.editReply({ embeds: [embed] });
} }
}, },
}; };