diff options
| author | Rapptz <[email protected]> | 2017-02-21 08:38:06 -0500 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2017-02-21 08:38:06 -0500 |
| commit | b8727fd4632b9a712147043045634c0a5dd8ecd8 (patch) | |
| tree | 5cf55dc17c85470fe699f413e8cbe047fd2c0e4a | |
| parent | Check that the type in Colour and Permissions are int. (diff) | |
| download | discord.py-b8727fd4632b9a712147043045634c0a5dd8ecd8.tar.xz discord.py-b8727fd4632b9a712147043045634c0a5dd8ecd8.zip | |
Fix Client.emojis returning a list of IDs.
| -rw-r--r-- | discord/state.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/state.py b/discord/state.py index 2d02da60..8e1ba0eb 100644 --- a/discord/state.py +++ b/discord/state.py @@ -162,7 +162,7 @@ class ConnectionState: @property def emojis(self): - return list(self._emojis) + return list(self._emojis.values()) @property def private_channels(self): |