aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index 2a3a4fd..7956898 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -13,7 +13,7 @@ use dotenv::dotenv;
use sqlx::{postgres::PgPoolOptions, PgPool};
use tracing::{info, instrument};
-use poise::serenity_prelude as serenity;
+use poise::serenity_prelude::{self as serenity, Activity};
use ::serenity::model::gateway::GatewayIntents;
type Error = Box<dyn std::error::Error + Send + Sync>;
@@ -86,6 +86,7 @@ async fn main() {
commands::meta::ping(),
commands::meta::about(),
commands::meta::userinfo(),
+ commands::meta::set_status(),
commands::actions::boop(), commands::actions::hug(), commands::pony::randpony(), commands::pony::tpony(), commands::pony::ponybyid(),
commands::osu::osup(),
commands::osu::osubm(),
@@ -168,6 +169,9 @@ async fn main() {
sqlx::migrate!("./migrations")
.run(&pool)
.await.unwrap();
+
+ // Since this has context access, we can change the game activity here
+ _ctx.set_activity(Activity::playing(String::from("~help | https://glitchbot.net"))).await;
Ok(Data {
pg: Mutex::new(pool),
})