const embed = new EmbedBuilder() .setAuthor({ name: interaction.user.username, iconURL: interaction.user.displayAvatarURL({ dynamic: true }) }) .setDescription(`You have a bug that needs smashed!`) .addFields( { name: `What command?`, value: `/${interaction.commandName}` }, { name: `What happened?`, value: interaction.options.getString(`report`) }, { name: `What was the expected result?`, value: interaction.options.getString(`expected_result`) }, ) .setFooter({ text: `Bug report from ${interaction.user.tag} in ${interaction.guild.name}(${interaction.guild.id})` }) .setColor('#96b85d') botOwner.send({ embeds: [embed] });