Skip to content

Commit

Permalink
fix(bot): update intents a bit
Browse files Browse the repository at this point in the history
  • Loading branch information
Tibo-Ulens committed Sep 22, 2023
1 parent 2933454 commit 2d37319
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions bot/bot.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,14 @@ async def create(cls) -> "Bot":
"""Create and return a new bot instance"""

intents = discord.Intents.default()
intents.message_content = True
intents.members = True
intents.presences = False
intents.message_content = True

intents.bans = False
intents.dm_messages = False
intents.auto_moderation = False
intents.emojis_and_stickers = False
intents.integrations = False
intents.invites = False
intents.moderation = False
intents.typing = False
intents.voice_states = False
intents.webhooks = False
Expand Down

0 comments on commit 2d37319

Please sign in to comment.