From 97acdac467d40ab61d8c6b0f701a0f0c093c4b1f Mon Sep 17 00:00:00 2001 From: Jacob Date: Fri, 15 May 2026 00:56:15 -0400 Subject: [PATCH] fix: shorten the description of `render` to try to make Discord accept it --- src/command/render.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/command/render.rs b/src/command/render.rs index 877cf70..af2df8f 100644 --- a/src/command/render.rs +++ b/src/command/render.rs @@ -8,7 +8,8 @@ use twilight_util::builder::command::CommandBuilder; use crate::command::State; const NAME: &str = "render"; -const DESCRIPTION: &str = "(Only the bot owner can use this) Render a composite audio file from the specified range of voice chat"; +const DESCRIPTION: &str = + "(Only the bot owner can use this) Make an audio file from the specified range of VC"; pub static COMMAND: LazyLock = LazyLock::new(|| { CommandBuilder::new(NAME, DESCRIPTION, CommandType::ChatInput)