aboutsummaryrefslogtreecommitdiff
path: root/discord/state.py
diff options
context:
space:
mode:
Diffstat (limited to 'discord/state.py')
-rw-r--r--discord/state.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/discord/state.py b/discord/state.py
index 7c1ba993..634a2749 100644
--- a/discord/state.py
+++ b/discord/state.py
@@ -199,6 +199,9 @@ class ConnectionState:
compat.create_task(self._delay_ready(), loop=self.loop)
+ def parse_resumed(self, data):
+ self.dispatch('resumed')
+
def parse_message_create(self, data):
channel = self.get_channel(data.get('channel_id'))
message = Message(channel=channel, **data)