aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--discord/state.py9
1 files changed, 3 insertions, 6 deletions
diff --git a/discord/state.py b/discord/state.py
index a2a2dee6..b4b72d3a 100644
--- a/discord/state.py
+++ b/discord/state.py
@@ -769,12 +769,9 @@ class ConnectionState:
return
# check if it requires chunking
- if guild.large:
- # since we're not waiting for 'useful' READY we'll just
- # do the chunk request here if wanted
- if self._fetch_offline:
- asyncio.ensure_future(self._chunk_and_dispatch(guild, unavailable), loop=self.loop)
- return
+ if self._fetch_offline:
+ asyncio.ensure_future(self._chunk_and_dispatch(guild, unavailable), loop=self.loop)
+ return
# Dispatch available if newly available
if unavailable is False: