语音通道userlimit不和谐js

时间:2018-09-08 09:36:33

标签: discord.js

我正在尝试使用 Discord Bot 创建语音通道 。这只是我的代码(我正在使用discord.js)

message.channel.createChannel('General', "voice").then(chan => {
    chan.userLimit("5");
})

但是控制台日志就是这样

(node:13080) UnhandledPromiseRejectionWarning: TypeError: message.channel.createChannel is not a function

我该如何处理?

1 个答案:

答案 0 :(得分:1)

您不能在频道上使用.createChannel方法,需要在行会上使用它。

这是正确的:

message.guild.createChannel();