Add status and activity to the bot

This commit is contained in:
2026-05-11 21:32:15 +02:00
parent 40c8203849
commit 3fe5b47856
+2
View File
@@ -93,6 +93,8 @@ async fn main() {
let client = serenity::ClientBuilder::new(token, intents) let client = serenity::ClientBuilder::new(token, intents)
.framework(framework) .framework(framework)
.status(serenity::OnlineStatus::Idle)
.activity(ActivityData::playing("next station ⭐ /help"))
.await; .await;
client.unwrap().start().await.unwrap() client.unwrap().start().await.unwrap()