Cannot send file
This code used to work in v13 but now silently fails with an interaction error
await interaction.reply({
ephemeral: true,
files: skin.map(
(i) =>
new AttachmentBuilder(
Buffer.from(i.file, 'base64'),
{ name: `${i.name}.png` }
)
),
});