From 3c6361f3bad78af6f8ea9b28be898adc67934bd9 Mon Sep 17 00:00:00 2001 From: Paillat Date: Fri, 16 Dec 2022 15:54:16 +0100 Subject: [PATCH] changed intents --- code/code.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/code/code.py b/code/code.py index e50be13..55b40b7 100644 --- a/code/code.py +++ b/code/code.py @@ -11,10 +11,6 @@ intents = discord.Intents.default() intents.message_content = True intents.members = True import apsw # pip install apsw. ApSW is a Python interface to SQLite 3 - - -# set the intents to 3276543 -print(intents) bot = discord.Bot(intents=intents, help_command=None) # create the bot bot.add_cog(cogs.Setup(bot)) bot.add_cog(cogs.Settings(bot))