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')