Skip to content
Advertisement

How to ping message author and user in Discord.js embed

i recently started with Discord.js and i am currently making a hug command. the command itself is working fine, but the problem i am facing is that i want the bot to ping the message author and the user that gets hugged. if i type in the command “a!hug @user” this is what i get: “<@1389615656215> hugged username”, but i want it to show up like this: “@user hugged @user”.

below is my code

JavaScript

I really hope you guys can help me out!

Advertisement

Answer

You can’t have mentions in embed titles. The only place you can add them is a field (using addField, or addFields) or the description (using setDescription)

JavaScript

enter image description here

User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement