使用discord.py(异步)在类别中创建频道

时间:2018-11-14 01:32:53

标签: python discord.py

我知道可以通过重写来实现,但是我暂时无法使用。

channel = await self.bot.http.request(discord.http.Route('POST', "/guilds/{}/channels".format(server.id)), json={'parent_id': "467876956363091850", 'name': author.id, 'type': 2, 'user_limit': limit})

这成功在discord.py的异步分支中的通道类别中创建了一个通道。但是,该频道似乎没有进入缓存或其他内容。 server.get_channel(channel['id'])为我返回了None,因此创建频道后,我无法对其进行任何操作。

对此有解决方法吗?

0 个答案:

没有答案