Raise if member intent is not enabled

This commit is contained in:
Rapptz 2020-09-10 06:03:26 -04:00
parent ad917ca02d
commit e6edc44f3d

View File

@ -2054,7 +2054,16 @@ class Guild(Hashable):
-----------
cache: :class:`bool`
Whether to cache the members as well.
Raises
-------
ClientException
The members intent is not enabled.
"""
if not self._state._intents.members:
raise ClientException('Intents.members must be enabled to use this.')
return await self._state.chunk_guild(self, cache=cache)
async def query_members(self, query=None, *, limit=5, user_ids=None, cache=True):