diff options
author | 2024-04-01 02:26:30 +0100 | |
---|---|---|
committer | 2024-04-01 02:26:30 +0100 | |
commit | b51b80a14414004d23605db8c505af3ad41c9cdc (patch) | |
tree | 8c296d8029a04bb40082fae7b84624a70165434b | |
parent | limit pod logs command to dev-ops channel (diff) |
add members intent
-rw-r--r-- | arthur/__main__.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arthur/__main__.py b/arthur/__main__.py index 041399b..8b013b4 100644 --- a/arthur/__main__.py +++ b/arthur/__main__.py @@ -16,6 +16,7 @@ async def main() -> None: """Entry async method for starting the bot.""" intents = discord.Intents.default() intents.message_content = True + intents.members = True intents.dm_typing = False intents.dm_reactions = False intents.invites = False |