From e4677b7564a4e437170680334913f53fa12d6b26 Mon Sep 17 00:00:00 2001 From: NotSoToothless <67082114+FURRO404@users.noreply.github.com> Date: Thu, 14 May 2026 00:12:00 -0700 Subject: [PATCH] disable privileged intents in TSSBOT/start_bot.py (#1231) bot.run() was crashing with PrivilegedIntentsRequired because intents.message_content=True needs the toggle enabled in the Discord developer portal. Mirror SREBOT's intent config: message_content=False, reactions+messages on. TSSBOT can opt into the privileged intent later if/when it needs message content. Co-authored-by: Claude Opus 4.7 (1M context) --- start_bot.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/start_bot.py b/start_bot.py index 7062c53..ef68bcd 100644 --- a/start_bot.py +++ b/start_bot.py @@ -33,7 +33,9 @@ def _handle_signal(signum, _frame): TOKEN = os.environ.get("DISCORD_KEY", "").strip() intents = discord.Intents.default() -intents.message_content = True +intents.message_content = False +intents.reactions = True +intents.messages = True bot = commands.Bot(command_prefix="!", intents=intents)