summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/commands/general/ask.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/commands/general/ask.rs b/src/commands/general/ask.rs
index ba18bdd..7775fb7 100644
--- a/src/commands/general/ask.rs
+++ b/src/commands/general/ask.rs
@@ -6,7 +6,9 @@ use color_eyre::eyre::{Context as _, Result};
#[poise::command(prefix_command, slash_command)]
pub async fn ask(
ctx: Context<'_>,
- #[description = "The question you want to ask teawie"] _question: String,
+ #[rename = "question"]
+ #[description = "The question you want to ask teawie"]
+ _question: String,
) -> Result<()> {
let resp = utils::random_choice(consts::RESPONSES)
.wrap_err("Couldn't choose from random responses!")?;