Discord is inconsistent here and doesn't emit a VoiceStateUpdate for the
old session_id when a user connects to voice from a different device
(thus disconnecting the first device). To avoid corrupting our voice
state cache, we need to remove any of the users old sessions (they
should have at most one).
I included tests on this one because its esoteric and undocumented, so
there is a high chance I'll break it in the future.
* initial voice
* some updates
fixed it
* some style updates
replaced the speaking when joining with an actual client_connect event
* please pass
* replaced channel with client in VoiceData and VoiceSpeaking events
Also changed some voice sending stuff
* added more debug logs
* fixed version not being set on the voice gateway
Previously under python 2.x the text field allowed through values which
would not be turned into a string. This is invalid as all output should
be a valid textual string. This commit fixes that behavior to properly
cast the value to a string in all cases.
* Added tutorial on how to create an embed
Had some spare time and figured I'd help out by creating a tutorial. Tried to follow the format in the rest of the bot tutorial, but if there are things that needs changing, please let me know!
* Added some comments
* Fix typo
* Fix another typo
* Update building_block_commands.md
* Update building_block_commands.md
* Update building_block_commands.md
* Update building_block_commands.md
* Update building_block_commands.md
* Added listeners docs
* Capitalize Discord
* Fix accidental double paste of content
* Update building_block_commands.md
* Update building_block_listeners.md
* Update message_embeds.md
* Added ETF support for Python 3.x
Bumped requirements for PyNaCl and youtube-dl
* Changed setup.py check from using six to sys
Bumped requirements for youtube-dl and websocket-client