文字/语音/类别频道删除所有覆盖权限

时间:2020-02-10 18:51:09

标签: javascript node.js discord.js

重置为该频道设置的所有权限。对不起,我的英语不好。

1 个答案:

答案 0 :(得分:0)

您可以使用channel.lockPermissions()重置所有频道权限,因此频道将获得父级权限。

client.on('message', message => {
  // If the message is "ping"
  if (message.content === 'rest') {
    // Send "pong" to the same channel
    targetChannel = message.guild.channels.get('PLACEE ID HERE')
    if (targetChannel) targetChannel.lockPermissions()
  }
});