From bf3b668879150ac45fa12a06b5c76160b6c21646 Mon Sep 17 00:00:00 2001 From: Paillat Date: Mon, 19 Dec 2022 20:09:37 +0100 Subject: [PATCH] Update code.py --- code/code.py | 1 - 1 file changed, 1 deletion(-) diff --git a/code/code.py b/code/code.py index 55b40b7..7f9d064 100644 --- a/code/code.py +++ b/code/code.py @@ -9,7 +9,6 @@ from config import debug, conn, c # import the debug function and the database c #add the message content intent to the bot, aka discord.Intents.default() and discord.Intents.message_content intents = discord.Intents.default() intents.message_content = True -intents.members = True import apsw # pip install apsw. ApSW is a Python interface to SQLite 3 bot = discord.Bot(intents=intents, help_command=None) # create the bot bot.add_cog(cogs.Setup(bot))