I am in the process of creating a Would You Rather command for my bot. I have everything in place, except one feature I can't work out how to implement.
I would love to have it so that when someone reacts with their answer (????️ or ????️) the bot then edits the embed and puts the user who replied under their answer like this:
The code I currently have is:
case "wyr":
embed.setColor('#fc2803')
embed.setTitle('Would You Rather?')
embed.setDescription(':a: **Be able to fly** \n \n :b: **Breathe underwater**')
message.channel.send(embed).then(m => m.react('????️')).then(r => r.message.react('????️'));