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