diff options
author | 2020-10-31 12:42:50 +0100 | |
---|---|---|
committer | 2020-10-31 12:43:05 +0100 | |
commit | 937ac68f15f0cc0abf1983c3f8cfd46403dd4156 (patch) | |
tree | 25af89942b6b88d18f4ae1691686b99d3465b898 /bot/bot.py | |
parent | Intents: disable privileged 'Members' intent (diff) |
Intents: document which intents are privileged
Diffstat (limited to 'bot/bot.py')
-rw-r--r-- | bot/bot.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -209,8 +209,8 @@ _intents = discord.Intents.all() _intents.bans = False _intents.integrations = False _intents.invites = False -_intents.members = False -_intents.presences = False +_intents.members = False # Privileged +_intents.presences = False # Privileged _intents.typing = False _intents.webhooks = False |