diff --git a/src/commands/ping.rs b/src/commands/ping.rs index 89c31e0..03da42d 100644 --- a/src/commands/ping.rs +++ b/src/commands/ping.rs @@ -2,9 +2,7 @@ use crate::Error; /// Check if the bot is alive #[poise::command(slash_command)] -pub async fn ping( - ctx: poise::Context<'_, (), Error>, -) -> Result<(), Error> { - ctx.reply("Powong!").await?; +pub async fn ping(ctx: poise::Context<'_, (), Error>) -> Result<(), Error> { + ctx.reply(format!("Powong! `{:?}`ms", ctx.ping().await.as_millis())).await?; Ok(()) }