Ещё один фикс

This commit is contained in:
JonnyBro 2022-10-13 00:11:31 +05:00
parent 192480cdbd
commit fbef5c76bc

View file

@ -70,13 +70,14 @@ class Help extends BaseCommand {
.addOptions(categoriesRows) .addOptions(categoriesRows)
); );
await interaction.editReply({ const msg = await interaction.editReply({
content: interaction.translate("common:AVAILABLE_OPTIONS"), content: interaction.translate("common:AVAILABLE_OPTIONS"),
fetchReply: true,
components: [row] components: [row]
}); });
const filter = i => i.user.id === interaction.user.id; const filter = i => i.user.id === interaction.user.id;
const collector = interaction.channel.createMessageComponentCollector({ filter, idle: (15 * 1000) }); const collector = msg.createMessageComponentCollector({ filter, idle: (15 * 1000) });
collector.on("collect", async i => { collector.on("collect", async i => {
if (i.isSelectMenu() && (i.customId === "help_category_select" || i.customId === "help_commands_select")) { if (i.isSelectMenu() && (i.customId === "help_category_select" || i.customId === "help_commands_select")) {