语音频道userlimit discord js

Voice channel userlimit 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

我该如何处理?

不能在频道使用.createChannel方法,需要在公会使用。

这是正确的:
discord.jsv11

message.guild.createChannel();

discord.js v12

message.guild.channels.create();