def setup_channel(self, channel, role):
perms = discord.PermissionOverwrite()
if channel.type == discord.ChannelType.text:
perms.send_messages = False
perms.send_tts_messages = False
elif channel.type == discord.ChannelType.voice:
perms.speak = False
await self.bot.edit_channel_permissions(channel, role, overwrite=perms)
评论列表
文章目录