Browse Source

Fix Guild.chunk() returning list of members

pull/7514/head
Steve C 3 years ago
committed by GitHub
parent
commit
e9c91a535a
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      discord/guild.py

3
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,

Loading…
Cancel
Save