Browse Source

Fix Client.emojis returning a list of IDs.

pull/1278/head
Rapptz 8 years ago
parent
commit
b8727fd463
  1. 2
      discord/state.py

2
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):

Loading…
Cancel
Save