Browse Source

Add warning if guilds intent is disabled.

pull/5870/head
Rapptz 5 years ago
parent
commit
bf42cf7232
  1. 3
      discord/state.py

3
discord/state.py

@ -139,6 +139,9 @@ class ConnectionState:
else:
intents = Intents.default()
if not intents.guilds:
log.warning('Guilds intent seems to be disabled. This may cause state related issues.')
try:
chunk_guilds = options['fetch_offline_members']
except KeyError:

Loading…
Cancel
Save