-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Closed
Labels
Description
I tried to obfuscate my discord Bot. Almost everything works perfectly except one thing and that is I save the emojis in a variable to use them in a message (string). unfortunately this does not work and in the message is then only the emoji id and not the emoji as wanted. Code is below :)
`
const emoji = client.emojis.cache.get("XXX")
const embed_menu = new Discord.MessageEmbed()
.setDescription(`
This is the Test Emoji ${emoji}
`)
message.reply({embed: embed_menu})
`