From b20023e0261e1dc6e8e9905d50b7a8c3a2b4b382 Mon Sep 17 00:00:00 2001 From: bariscodefx Date: Mon, 3 Jun 2024 01:17:10 +0300 Subject: [PATCH] chore(PresenceManager): change status to 'online' --- src/parts/PresenceManager.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/parts/PresenceManager.php b/src/parts/PresenceManager.php index 1762735..d47cb29 100644 --- a/src/parts/PresenceManager.php +++ b/src/parts/PresenceManager.php @@ -117,7 +117,7 @@ protected function changePresence() "name" => $this->presences[$this->currentPresence], "type" => $this->presenceType ]); - $this->discord->updatePresence($act, false, 'idle'); + $this->discord->updatePresence($act, false, 'online'); $this->currentPresence += 1; }