myong_dev #8
|
|
@ -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] });
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue