Added the required intents (and removed a bunch of useless ones)

This commit is contained in:
Simon Junod
2023-08-14 22:33:01 +02:00
parent 36d5b3b665
commit 91f47d1d80

7
run.py
View File

@@ -12,7 +12,12 @@ import cambot.polls as polls
from cambot.emojis import *
from cambot.settings import *
bot = nextcord.Client()
intents = nextcord.Intents.default()
intents.typing = False
intents.presences = False
intents.message_content = True
bot = nextcord.Client(intents=intents)
codenames_games = {}
wordle_games = {}