From b0df43886cc97921e30ee368f548ba92d1a05e1e Mon Sep 17 00:00:00 2001 From: Showdown76 <66854264+Showdown76py@users.noreply.github.com> Date: Wed, 12 Apr 2023 17:26:16 +0000 Subject: [PATCH] presence intents --- main.py | 1 + 1 file changed, 1 insertion(+) diff --git a/main.py b/main.py index cfc451a..5abec8d 100644 --- a/main.py +++ b/main.py @@ -16,6 +16,7 @@ db = sqlite3.connect('tokens.db') typing = [] intents = discord.Intents.default() intents.members = True +intents.presences = True intents.dm_messages = True class App(discord.Client):