From 83ad5f2613c49325f16703c72c845e0d9da125f8 Mon Sep 17 00:00:00 2001 From: deflax Date: Tue, 16 Jan 2024 18:12:09 +0200 Subject: [PATCH] set bot intents as default() --- src/discordbot/discordbot.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/discordbot/discordbot.py b/src/discordbot/discordbot.py index 7cade22..df60ffc 100644 --- a/src/discordbot/discordbot.py +++ b/src/discordbot/discordbot.py @@ -12,9 +12,6 @@ scheduler_hostname = os.environ.get('SCHEDULER_API_HOSTNAME', 'tv.example.com') # Discord API Intents intents = discord.Intents.default() -intents.messages = True -intents.guilds = True -intents.reactions = True # Discord client bot = commands.Bot(command_prefix="!", intents=intents)