From bf42cf72326a6fd6b64c697506be04c46acae26f Mon Sep 17 00:00:00 2001 From: Rapptz Date: Mon, 28 Sep 2020 05:39:13 -0400 Subject: [PATCH] Add warning if guilds intent is disabled. --- discord/state.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/discord/state.py b/discord/state.py index fa6a9ff36..82dbea68f 100644 --- a/discord/state.py +++ b/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: