From 91f47d1d80f71dcc374097869e121c13d9ae82d5 Mon Sep 17 00:00:00 2001 From: Simon Junod Date: Mon, 14 Aug 2023 22:33:01 +0200 Subject: [PATCH] Added the required intents (and removed a bunch of useless ones) --- run.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/run.py b/run.py index 3b14e95..c34bd41 100755 --- a/run.py +++ b/run.py @@ -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 = {}