I made a command as "text" command, and wanted to also make a slash command using code I made, but even tho it's the same code, emoji works for "text" command, and is shown as plain text when trying to add it in interaction!
Here is the part of my code:
const embed = new MessageEmbed()
embed.addField('Badges', '<:HSE:emote_id>', true);
interaction.reply({embeds: [embed], ephemeral: false})
And I'm sure ID and name is corrent because I copied it from "text" command where it works just fine, but instead of emoji I only see :HSE:! What can I do about it?