From 40f88db8e3637b49b396532b29b19854b4294648 Mon Sep 17 00:00:00 2001 From: superpowers04 <38338700+superpowers04@users.noreply.github.com> Date: Fri, 22 May 2026 20:43:23 -0400 Subject: [PATCH 1/2] is_empty message is now to the point instead of accidentally implying refraction can find all issues Signed-off-by: superpowers04 <38338700+superpowers04@users.noreply.github.com> --- src/handlers/event/analyze_logs/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/handlers/event/analyze_logs/mod.rs b/src/handlers/event/analyze_logs/mod.rs index df899130..4da68340 100644 --- a/src/handlers/event/analyze_logs/mod.rs +++ b/src/handlers/event/analyze_logs/mod.rs @@ -51,7 +51,7 @@ pub async fn handle(ctx: &Context, message: &Message, data: &Data) -> Result<()> if issues.is_empty() { e = e .color(Colors::Green) - .description("The automatic check didn't reveal any issues, but it's possible that some issues went undetected. Please wait for a volunteer to assist you."); + .description("**Please wait for a volunteer to assist you.** The automatic check did not find anything but a volunteer might be able to.\n**Please do not delete your message**- else a volunteer will not be able to help you"); } else { e = e.color(Colors::Red); From 95dcb1b10c7929b3ee4cac62e042dba008ec440e Mon Sep 17 00:00:00 2001 From: superpowers04 <38338700+superpowers04@users.noreply.github.com> Date: Fri, 22 May 2026 20:44:45 -0400 Subject: [PATCH 2/2] exclamation point Signed-off-by: superpowers04 <38338700+superpowers04@users.noreply.github.com> --- src/handlers/event/analyze_logs/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/handlers/event/analyze_logs/mod.rs b/src/handlers/event/analyze_logs/mod.rs index 4da68340..9eea1e51 100644 --- a/src/handlers/event/analyze_logs/mod.rs +++ b/src/handlers/event/analyze_logs/mod.rs @@ -51,7 +51,7 @@ pub async fn handle(ctx: &Context, message: &Message, data: &Data) -> Result<()> if issues.is_empty() { e = e .color(Colors::Green) - .description("**Please wait for a volunteer to assist you.** The automatic check did not find anything but a volunteer might be able to.\n**Please do not delete your message**- else a volunteer will not be able to help you"); + .description("**Please wait for a volunteer to assist you.** The automatic check did not find anything but a volunteer might be able to!\n**Please do not delete your message**- else a volunteer will not be able to help you"); } else { e = e.color(Colors::Red);