Summary
Redo guild user syncing.
Improvements
- Add 5 second gateway connect rate limit per batch.
- Add notification when session start limit reaches low amount.
- Improve startup time of more clients by synchronizing guild member requests.
- If a client is removed from a guild meanwhile connecting, it's members wont be requested.
- Add `skip_ready_cycle`.
- `ClientUserbase.partial` is not a property (reduces ram usage).
- Do not request users if the client cannot.
- Cancel ready state on reconnect.
- `Client.events.sticker_delete` now accepts only 2 parameters (client, sticker) from 3 (client, sticker, guild).
- `Emoji.guild` is now a property, `Emoji.guild_id` is now an attribute.
- `Emoji.precreate` now accepts `guild_id` parameter instead of `guild`.
- `Client.events.emoji_delete` now accepts only 2 parameters (client, emoji) from 3 (client, emoji, guild).
- Add `UserBase.banner_color`.
- Add `banner_color` parameter to `User.precreate`.
- Add `banner_color` parameter to `Client.__new__`.
- Add `debug_options` parameters to `DiscordHTTPClient.__new__`.
- Add `http_debug_options` parameters to `Client.__new__`.
- Add `banner_color` parameter to `Client.client_edit`.
- Add `bio` parameter to `Client.client_edit`.
- Add `banner` parameter to `Client.client_edit`.
Bug Fixes
- Some attributes were not set by `Client.__new__`.
- Fix race conditions in `KOKORO`.
- Fix occasional `RuntimeWarning` in `AudioReader.run`.
- Fix occasional `RuntimeWarning` in `AudioPlayer.run`.
ext.slash
- `evaluate_two_sided_operations` returned 1 token too early.