diff options
| author | khazhyk <[email protected]> | 2019-04-14 18:50:28 -0700 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2019-04-17 22:41:59 -0400 |
| commit | b1fae0861a6011fb4c37859db2d78f7ceb4a7b13 (patch) | |
| tree | 1ca32631b6c97efab9f11d5a3daf9d6bc567c617 /docs/migrating.rst | |
| parent | [commands] Add new MessageConverter to commands prose page. (diff) | |
| download | discord.py-b1fae0861a6011fb4c37859db2d78f7ceb4a7b13.tar.xz discord.py-b1fae0861a6011fb4c37859db2d78f7ceb4a7b13.zip | |
add read-only cached_messages property to Client
For those of us who want access to this sweet trove of zero hop messages
Diffstat (limited to 'docs/migrating.rst')
| -rw-r--r-- | docs/migrating.rst | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/docs/migrating.rst b/docs/migrating.rst index 0b2e0765..543e8f25 100644 --- a/docs/migrating.rst +++ b/docs/migrating.rst @@ -206,8 +206,6 @@ A list of these changes is enumerated below. +---------------------------------------+------------------------------------------------------------------------------+ | ``Client.wait_until_login`` | Removed | +---------------------------------------+------------------------------------------------------------------------------+ -| ``Client.messages`` | Removed | -+---------------------------------------+------------------------------------------------------------------------------+ | ``Client.wait_until_ready`` | No change | +---------------------------------------+------------------------------------------------------------------------------+ @@ -330,6 +328,10 @@ They will be enumerated here. - Use :attr:`Client.emojis` instead. +` ``Client.messages`` + + - Use read-only :attr:`Client.cached_messages` instead. + - ``Client.wait_for_message`` and ``Client.wait_for_reaction`` are gone. - Use :meth:`Client.wait_for` instead. |