Type Error: message.createReactionCollector is not a function Discord.js

Type Error: message.createReactionCollector is not a function Discord.js

我正在为我的机器人制作一个赌博系统。我使用 discord.js 并尝试制作一个反应收集器来选择他们想玩的游戏。我不知道为什么创建一个反应收集器不是一个函数,所以也许只有我一个人。

代码如下:

run(message) {

    const embed = new RichEmbed()
   .setColor(1)
   .setTitle(`Welcome to the gambling center! Please select a game to play!`)
   .addBlankField(true)
   .addField(`:one:`, `Gamble away to win double or nothin!`)
   .addBlankField(true)
   .addField(`:two:`, `Gamble like the lottery to have a chance to win big!`)
   .addBlankField(true)
   let m = message.channel.send({embed}).then((m)=>{
        m.react('\u0031\u20E3')
        m.react('\u0032\u20E3')
    }).then(()=>{
        const collector = message.createReactionCollector((reaction, user) => 
            user.id === message.author.id &&
            reaction.emoji.name === "\u0031\u20E3" ||
            reaction.emoji.name === "\u0032\u20E3" 
        ).once("collect", reaction => {
             const chosen = reaction.emoji.name;
                 if(chosen === "\u0031\u20E3"){
                    message.channel.send(`Double or Nothin!`)
                }else{(chosen === "\u0032\u20E3")
                message.channel.send(`Lottery!`)}
collector.stop()});
    })  
}

这是弹出的完整错误:

(node:5948) UnhandledPromiseRejectionWarning: TypeError: message.createReactionCollector is not a function
at message.channel.send.then.then (C:\Users\patri\Documents\Super Dev\commands\Economy\Gamble.js:36:39)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:160:7)
(node:5948) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1)
(node:5948) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.

如有任何帮助,我们将不胜感激! (如果有点乱,请见谅。)

您似乎正在发送一条消息,但使用了不同的消息对象。尝试使变量 m 成为反应收集器