From df54da8bc9e87ba75c94a73e8c577e46524bf52b Mon Sep 17 00:00:00 2001 From: Rapptz Date: Tue, 9 Aug 2022 10:42:15 -0400 Subject: [PATCH] Fix secret example requiring more intents than necessary --- examples/secret.py | 1 - 1 file changed, 1 deletion(-) diff --git a/examples/secret.py b/examples/secret.py index 562903aa2..e6aebaf89 100644 --- a/examples/secret.py +++ b/examples/secret.py @@ -6,7 +6,6 @@ import discord from discord.ext import commands intents = discord.Intents.default() -intents.message_content = True bot = commands.Bot(command_prefix=commands.when_mentioned, description="Nothing to see here!", intents=intents)