From 23bdcffc8c2d3b8097749e211e9836950d568508 Mon Sep 17 00:00:00 2001 From: minneelyyyy Date: Tue, 10 Dec 2024 17:59:30 -0500 Subject: [PATCH] add help for daily commands --- src/commands/gambling/daily.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/commands/gambling/daily.rs b/src/commands/gambling/daily.rs index 8b47246..3024228 100644 --- a/src/commands/gambling/daily.rs +++ b/src/commands/gambling/daily.rs @@ -57,6 +57,7 @@ where Ok(()) } +/// Tells you what your current daily streak is #[poise::command(slash_command, prefix_command)] pub async fn streak(ctx: Context<'_>) -> Result<(), Error> { let db = &ctx.data().database; @@ -120,6 +121,7 @@ async fn do_claim(ctx: Context<'_>) -> Result<(), Error> { Ok(()) } +// Redeem daily tokens. #[poise::command(slash_command, prefix_command)] pub async fn claim(ctx: Context<'_>) -> Result<(), Error> { do_claim(ctx).await