const tempObj = await Temp.findOne({ GuildID: interaction.guild.id }).lean().exec() as any const guildObj = await GuildSchema.findOne({ GuildID: interaction.guild.id }).lean().exec() as any const addMutationRow = new ActionRowBuilder(tempObj.AddMutationRow) const removeMutationRow = new ActionRowBuilder(tempObj.RemoveMutationRow) const forum = await client.channels.cache.get(guildObj.BreedForum) as any console.log(tempObj) const displayEmbed = new EmbedBuilder() as any const embedData = interaction.message.embeds[0].data const threadTitle = embedData.title const dinoImage = (Object.values(DinoData).find((DinoData: any) => DinoData.name === embedData.title) as { dossierIcon: string }).dossierIcon for (let i = 0; i < embedData.fields.length; i++) { displayEmbed.addFields({ name: embedData.fields[i].name, value: embedData.fields[i].value }) } let embedfields = displayEmbed.data.fields.length while (embedfields % 3 !== 0) { embedfields++; displayEmbed.addFields({ name: '\u200B', value: '\u200B', inline: true },) } const configRow = new ActionRowBuilder() .addComponents( new ButtonBuilder() .setLabel("Excluir") .setCustomId('breed_delete') .setEmoji('<:uncheck:1068375001889243208>') .setStyle(ButtonStyle.Primary), new ButtonBuilder() .setLabel("Editar") .setCustomId('breed_edit') .setEmoji('<:Config:1085706544320086036>') .setStyle(ButtonStyle.Primary) ) console.log(configRow) console.log(addMutationRow) displayEmbed.setThumbnail(dinoImage) const thread = await forum.threads.create({ name: threadTitle, message: { content: `Click here to access ${threadTitle}`, embeds: [displayEmbed], components: [addMutationRow, removeMutationRow, configRow], }, reason: threadTitle, }) const button = new ButtonBuilder() .setLabel('Go to Channel') .setStyle(ButtonStyle.Link) .setURL(thread.url) const linkButton = new ActionRowBuilder() .addComponents(button) const embed = new EmbedBuilder() .setThumbnail(dinoImage) interaction.reply({ embeds: [embed], components: [linkButton] })