重置为该频道设置的所有权限。对不起,我的英语不好。
答案 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()
}
});