From 0bb5024c6aa300d9d76c069f49578fd7c7d459e6 Mon Sep 17 00:00:00 2001 From: Sven Heidemann Date: Tue, 30 Nov 2021 17:22:37 +0100 Subject: [PATCH] Added intents --- src/gismo_core/service/bot_service.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gismo_core/service/bot_service.py b/src/gismo_core/service/bot_service.py index becdab4..2e8fa95 100644 --- a/src/gismo_core/service/bot_service.py +++ b/src/gismo_core/service/bot_service.py @@ -36,7 +36,7 @@ class BotService(BotServiceABC, commands.Bot): self._bot_settings: BotSettings = bot_settings # setup super - commands.Bot.__init__(self, command_prefix=bot_settings.prefix, help_command=None) + commands.Bot.__init__(self, command_prefix=bot_settings.prefix, help_command=None, intents=discord.Intents().all()) async def start_async(self): self._logger.trace(__name__, 'Try to connect to discord')