【发布时间】:2021-11-15 10:18:18
【问题描述】:
如果我按下按钮,会出现以下错误:TypeError [INVALID_TYPE]: Supplied parameter is not a User nor a Role. 但是,我也可以在其中放置一个固定的 id,但仍然会出现此错误。
button.guild.channels.create('cs', {
type: "text",
parent_id: '802172599836213258',
permissionOverwrites: [
{
id: button.guild.roles.everyone,
deny: ['VIEW_CHANNEL', 'SEND_MESSAGES', 'READ_MESSAGE_HISTORY']
},
{
id: button.clicker.id,
allow: ['VIEW_CHANNEL', 'SEND_MESSAGES', 'READ_MESSAGE_HISTORY']
}
]
})
【问题讨论】:
标签: javascript node.js discord discord.js bots