From 45818ea553dd232079f6b1a0c4f009bd65dc1a37 Mon Sep 17 00:00:00 2001 From: James Harvey <44349936+jmshrv@users.noreply.github.com> Date: Wed, 11 Oct 2023 15:31:25 +0100 Subject: [PATCH] Add better not found message --- src/commands.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/commands.rs b/src/commands.rs index cbf92be..caa7825 100644 --- a/src/commands.rs +++ b/src/commands.rs @@ -66,7 +66,10 @@ pub async fn verify( println!("Failed to find {student_id} :("); - ctx.say("Not found :(").await?; + ctx.say( + "Couldn't find your membership. Please sign up at https://hacksoc.net/join and try again.", + ) + .await?; Ok(()) }