myong_dev #8

Merged
myong merged 5 commits from myong_dev into main 2026-04-09 03:54:14 +00:00
1 changed files with 5 additions and 5 deletions
Showing only changes of commit 7022900eff - Show all commits

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