Rapptz / discord.py

An API wrapper for Discord written in Python.
http://discordpy.rtfd.org/en/latest
MIT License
14.73k stars 3.74k forks source link

Changing voice channel category #1145

Closed ghost closed 6 years ago

ghost commented 6 years ago

Is there any way to change the category of a voice channel that already exists? Or set the category of the voice channel upon creation.

diceroll123 commented 6 years ago

http://discordpy.readthedocs.io/en/rewrite/api.html#discord.Guild.create_voice_channel

You can pass a category as you create it.

diceroll123 commented 6 years ago

Ah yes and http://discordpy.readthedocs.io/en/rewrite/api.html#discord.VoiceChannel.edit for changing category.

ghost commented 6 years ago

Thanks!