diff options
author | 2020-10-31 12:41:06 +0100 | |
---|---|---|
committer | 2020-10-31 12:41:06 +0100 | |
commit | 59a9811d600a6a0ede6c627ec7758918cb13a6e6 (patch) | |
tree | 42d16ecbc1ebedd746ef9a50e6d67fbefaea32bb | |
parent | Deps: bump 'discord.py' to 1.5.1 & re-lock (diff) |
Intents: disable privileged 'Members' intent
With 'd.py' 1.5.1, the Member converter will now lazily fetch the
member object.
It is believed that this removes our need for the intent.
-rw-r--r-- | bot/bot.py | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -209,6 +209,7 @@ _intents = discord.Intents.all() _intents.bans = False _intents.integrations = False _intents.invites = False +_intents.members = False _intents.presences = False _intents.typing = False _intents.webhooks = False |