From eec6fe085f2eb020d194690b98ef1d4da61e77f1 Mon Sep 17 00:00:00 2001 From: eek7574 Date: Thu, 1 Dec 2022 10:11:05 +0000 Subject: [PATCH] Add messages intent --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index b811021..c77567d 100644 --- a/main.py +++ b/main.py @@ -9,7 +9,7 @@ bot = commands.Bot( commands.when_mentioned_or("h!"), debug_guilds=config.guilds, allowed_mentions=discord.AllowedMentions.none(), - intents=discord.Intents.default() + discord.Intents.members, + intents=discord.Intents.default() + discord.Intents.members + discord.Intents.messages, ) bot.training_lock = Lock()