前提・実現したいこと
discord.jsでリアクションをしたユーザーを所得してembedでメンションするというコードを書いています。
該当のソースコード
js
1 msg.channel.send(`@everyone`,embed).then((message) => { 2 message.react("✋"); 3 message 4 .awaitReactions((reaction) => reaction.emoji.name === "✋", { 5 time: 30000, 6 }).then((collected) => { 7 message.channel.send(new MessageEmbed() 8 .setTitle("参加者 participant") 9 .setColor(62719) 10 .setDescription(collected.first().users.cache.filter(u => !u.bot).map(u => u.tag).join('\n')) 11 ) 12 13 collected.first().users.cache.map((user) => !user.bot && user.send(asrandom)) 14 }); 15 });
試したこと
js
1u => u.tag 2から 3u => `@u.tag`
に変えたりしましたができませんでした
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。