Browse Source
Fix Guild.chunk() returning list of members
pull/7514/head
Steve C
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
2 deletions
-
discord/guild.py
|
|
@ -3371,8 +3371,7 @@ class Guild(Hashable): |
|
|
|
raise ClientException('Intents.members must be enabled to use this.') |
|
|
|
|
|
|
|
if not self._state.is_guild_evicted(self): |
|
|
|
await self._state.chunk_guild(self, cache=cache) |
|
|
|
return |
|
|
|
return await self._state.chunk_guild(self, cache=cache) |
|
|
|
|
|
|
|
async def query_members( |
|
|
|
self, |
|
|
|