From b05c63d86a696b238d4593f183a2f09dda398659 Mon Sep 17 00:00:00 2001 From: Lukas Nedbalek Date: Sat, 28 Sep 2024 00:02:04 +0200 Subject: [PATCH] feat: add message_content intent --- main.py | 1 + 1 file changed, 1 insertion(+) diff --git a/main.py b/main.py index e121f96..c56ce1d 100644 --- a/main.py +++ b/main.py @@ -12,6 +12,7 @@ DEFAULT_LOG_FILE = 'kruhobot.log' # Log file for the bot # Create an instance of the bot intents = discord.Intents.default() intents.members = True +intents.message_content = True bot = commands.Bot(command_prefix='!', intents=intents)