Browse Source

Prevent launching shards when bot is closed

Fix #8210
pull/8212/head
Rapptz 3 years ago
parent
commit
b917904c1b
  1. 3
      discord/shard.py

3
discord/shard.py

@ -416,6 +416,9 @@ class AutoShardedClient(Client):
ret.launch()
async def launch_shards(self) -> None:
if self.is_closed():
return
if self.shard_count is None:
self.shard_count: int
self.shard_count, gateway = await self.http.get_bot_gateway()

Loading…
Cancel
Save