diff --git a/discord/shard.py b/discord/shard.py index 07a6590b6..62bd9a3ca 100644 --- a/discord/shard.py +++ b/discord/shard.py @@ -43,7 +43,7 @@ class Shard: self.ws = ws self._client = client self.loop = self._client.loop - self._current = asyncio.Future(loop=self.loop) + self._current = compat.create_future(self.loop) self._current.set_result(None) # we just need an already done future @property