This commit is contained in:
slice 2018-06-19 17:55:43 -07:00
commit d1fad574c3
No known key found for this signature in database
GPG Key ID: 1508C19D7436A26D
1 changed files with 4 additions and 3 deletions

View File

@ -75,7 +75,7 @@ class GatewayWebsocket:
'd': { 'd': {
'heartbeat_interval': 45000, 'heartbeat_interval': 45000,
'_trace': [ '_trace': [
'despacito' 'lesbian-server'
], ],
} }
}) })
@ -92,13 +92,14 @@ class GatewayWebsocket:
}) })
async def dispatch_ready(self): async def dispatch_ready(self):
"""Dispatch the READY packet for a connecting user."""
await self.dispatch('READY', { await self.dispatch('READY', {
'v': 6, 'v': 6,
'user': {'i': 'Boobs !! ! .........'}, 'user': {},
'private_channels': [], 'private_channels': [],
'guilds': [], 'guilds': [],
'session_id': self.state.session_id, 'session_id': self.state.session_id,
'_trace': ['despacito'] '_trace': ['transbian']
}) })
async def _check_shards(self): async def _check_shards(self):