1
0
mirror of https://github.com/Rapptz/discord.py.git synced 2025-05-15 02:09:49 +00:00

Fix Client.emojis returning a list of IDs.

This commit is contained in:
Rapptz 2017-02-21 08:38:06 -05:00
parent 702d596af9
commit b8727fd463

@ -162,7 +162,7 @@ class ConnectionState:
@property
def emojis(self):
return list(self._emojis)
return list(self._emojis.values())
@property
def private_channels(self):