diff options
| author | Rapptz <[email protected]> | 2019-05-27 04:04:06 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2019-05-27 04:04:06 -0400 |
| commit | 96dc6f0c1169a610f6be9072da4e134626ada566 (patch) | |
| tree | b92d4d83e5b30afe3cbc5532d75a959ca25e5c61 | |
| parent | Make __repr__ slightly more detailed and add a few missing ones. (diff) | |
| download | discord.py-96dc6f0c1169a610f6be9072da4e134626ada566.tar.xz discord.py-96dc6f0c1169a610f6be9072da4e134626ada566.zip | |
Add note that Messageable.pins does not contain Message.reactions
Fix for #2189
| -rw-r--r-- | discord/abc.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/discord/abc.py b/discord/abc.py index 6c0350db..6514a95b 100644 --- a/discord/abc.py +++ b/discord/abc.py @@ -893,6 +893,12 @@ class Messageable(metaclass=abc.ABCMeta): Returns a :class:`list` of :class:`.Message` that are currently pinned. + .. note:: + + Due to a limitation with the Discord API, the :class:`Message` + objects returned by this method do not contain complete + :attr:`Message.reactions` data. + Raises ------- :exc:`.HTTPException` |