【发布时间】:2021-03-26 17:05:59
【问题描述】:
我正在尝试使用这个 -
new Discord.Client({ws:{intents: [Intents.FLAGS.GUILD_PRESENCES]}});
我遇到了问题。 See the attached image. 有谁知道怎么回事?谢谢!
【问题讨论】:
标签: javascript discord discord.js
我正在尝试使用这个 -
new Discord.Client({ws:{intents: [Intents.FLAGS.GUILD_PRESENCES]}});
我遇到了问题。 See the attached image. 有谁知道怎么回事?谢谢!
【问题讨论】:
标签: javascript discord discord.js
你还没有定义Intents它-
new Discord.Client({ws:{intents: [Discord.Intents.FLAGS.GUILD_PRESENCES]}})
【讨论】: