From 2053ebb79c9ecbc7fe6551e4630a64225e382bb6 Mon Sep 17 00:00:00 2001 From: minneelyyyy Date: Mon, 9 Dec 2024 15:30:42 -0500 Subject: [PATCH] %lb synonym --- src/commands/gambling/leaderboard.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/gambling/leaderboard.rs b/src/commands/gambling/leaderboard.rs index ddb66ae..dfc025b 100644 --- a/src/commands/gambling/leaderboard.rs +++ b/src/commands/gambling/leaderboard.rs @@ -4,7 +4,7 @@ use poise::serenity_prelude::UserId; use sqlx::Row; /// Display a leaderboard of the top 10 wealthiest players -#[poise::command(slash_command, prefix_command)] +#[poise::command(slash_command, prefix_command, aliases("lb"))] pub async fn leaderboard(ctx: Context<'_>) -> Result<(), Error> { let db = &ctx.data().database;