From de49f346313e7739945fbf0058bdfb78c90237a6 Mon Sep 17 00:00:00 2001 From: Nathan Perry Date: Wed, 17 Dec 2025 20:40:44 -0500 Subject: update poise to not use custom fork --- src/commands/mod.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/commands') diff --git a/src/commands/mod.rs b/src/commands/mod.rs index a5ee1bd..97a1abe 100644 --- a/src/commands/mod.rs +++ b/src/commands/mod.rs @@ -1,4 +1,4 @@ -use poise::builtins::PrettyHelpConfiguration; +use poise::builtins::HelpConfiguration; use crate::{ PoiseContext, @@ -42,7 +42,8 @@ pub fn commands() -> Vec> { /// Print this help text. #[poise::command(prefix_command, aliases("halp"))] pub async fn help(ctx: PoiseContext<'_>, command: Option) -> anyhow::Result<()> { - poise::builtins::pretty_help(ctx, command.as_deref(), PrettyHelpConfiguration { + poise::builtins::help(ctx, command.as_deref(), HelpConfiguration { + include_description: true, ..Default::default() }) .await?; -- cgit v1.3.1