* 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
* added voice_clients in state
Removed making a listener for voice state/server update for each voice connection, instead have only one listener and use the voice_clients in state to update based on that
Added priority speaking flag, also added some rtcp stuff, like a new event called 'RTCPData'
This update fixes some issues if you connect to another voice channel, instead of making a whole new voice connection, it just reuses one in the state.
* flake8 error fix
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