Adding a new field to an existing embed
I'm currently fetching the message containing the embed I was to edit and then getting the embed, but I can't figure out how to add a field to it without having to resend the entire embed?
const message = await channel.messages.fetch(id);
const originalEmbed = message.embeds[0];
originalEmbed.addFields({ name: 'test', value: 'test' })