【发布时间】:2021-06-07 06:45:30
【问题描述】:
我想避免会员看到特定频道。
我试过了,但我不明白为什么它不起作用。
我正在使用 discord.js v12 模块。
const memberRole = await msg.guild.roles.cache.find((role: any) => role.name === "member")
const permissionOverwrites = [{id: memberRole.id, deny: ['VIEW_CHANNEL']}];
const channel = await msg.guild.channels.create(`channel`, {
type: "text",
permissionOverwrites,
reason : "test",
});
如果我可以从这个频道中删除整个角色,那将是完美的。
谢谢
【问题讨论】:
-
你有什么错误吗?
标签: discord.js