From 3fe5b47856c06b3b22dbdc2c55523e58227dd953 Mon Sep 17 00:00:00 2001 From: Azur84 Date: Mon, 11 May 2026 21:32:15 +0200 Subject: [PATCH] Add status and activity to the bot --- src/main.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main.rs b/src/main.rs index e294726..b6ba244 100644 --- a/src/main.rs +++ b/src/main.rs @@ -93,6 +93,8 @@ async fn main() { let client = serenity::ClientBuilder::new(token, intents) .framework(framework) + .status(serenity::OnlineStatus::Idle) + .activity(ActivityData::playing("next station ⭐ /help")) .await; client.unwrap().start().await.unwrap()