From 75786c8143fd8f18586fc2c08ad7480bf7be23b9 Mon Sep 17 00:00:00 2001 From: SamSanai Date: Tue, 3 Jan 2023 12:53:44 +0000 Subject: [PATCH] Intents added --- voicecreate.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/voicecreate.py b/voicecreate.py index c7a6a3c..7448bd8 100644 --- a/voicecreate.py +++ b/voicecreate.py @@ -3,7 +3,11 @@ from discord.ext import commands import traceback import sys -bot = commands.Bot(command_prefix=".") +intents = discord.Intents.default() +#Message content intent needs to be enabled in the developer portal for your chosen bot. +intents.message_content = True + +bot = commands.Bot(command_prefix=".", intents=intents) bot.remove_command("help")