From 72e07e133406cf7bc3f9ab55b1b88f86afbc37f3 Mon Sep 17 00:00:00 2001 From: crate Date: Thu, 10 Oct 2024 15:46:19 +0000 Subject: [PATCH] guild intent --- terminal.py | 1 + 1 file changed, 1 insertion(+) diff --git a/terminal.py b/terminal.py index 2acbbbf..b1e8feb 100644 --- a/terminal.py +++ b/terminal.py @@ -11,6 +11,7 @@ USER_ID = config.USER_ID PREFIX = '$' intents = discord.Intents.default() +intents.guilds = True intents.messages = True intents.dm_messages = True bot = commands.Bot(command_prefix=PREFIX, intents=intents)