From 07f6e11f5085ca63e939fcf178965e62d2c27b28 Mon Sep 17 00:00:00 2001 From: crate Date: Thu, 10 Oct 2024 14:27:00 +0000 Subject: [PATCH] intents --- terminal.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/terminal.py b/terminal.py index fb73d81..612342b 100644 --- a/terminal.py +++ b/terminal.py @@ -10,7 +10,8 @@ TOKEN = config.BOT_TOKEN USER_ID = config.USER_ID PREFIX = '$' -bot = commands.Bot(command_prefix=PREFIX, intents=discord.Intents.all()) +intents = discord.Intents.default() +bot = commands.Bot(command_prefix=PREFIX, intents=intents) def setup_logging(): logger = logging.getLogger('termlog')