From f5a5e2e1ac2181b85bbd6d643ab34e8f60d9de03 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Berg=20J=C3=A1nos?= Date: Mon, 2 Jun 2025 09:55:27 +0200 Subject: [PATCH] * Changhed required intents. --- src/Bootstrap/Discord.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Bootstrap/Discord.php b/src/Bootstrap/Discord.php index dc4510c..d29dd0c 100644 --- a/src/Bootstrap/Discord.php +++ b/src/Bootstrap/Discord.php @@ -16,7 +16,8 @@ Env::get()->bot = DiscordBot::getInstance(); Env::get()->discord = new Discord([ 'token' => Env::get()->TOKEN, - 'intents' => Intents::getAllIntents(), + //'intents' => Intents::getAllIntents(), + 'intents' => 277025392640, ]); require_once BOT_ROOT . '/Bootstrap/Events.php';