Remove the bully message when a user joins (#1)

This commit is contained in:
2025-05-05 20:32:20 -07:00
committed by GitHub
parent f0f64492cc
commit 921b10d696
3 changed files with 6 additions and 6 deletions

View File

@@ -9,9 +9,9 @@ pub fn touch_grass(captures: regex::Captures, message: &Message, _: &VecDeque<Me
let grass_toucher = captures.get(1).unwrap().as_str();
let complete_message = format!("{} thinks you should go outside and touch some grass, {}",
message.source_nickname().unwrap_or("unknown_nick").to_string(),
grass_toucher);
let complete_message = format!("{}: {} thinks you should go outside and touch some grass",
grass_toucher,
message.source_nickname().unwrap_or("unknown_nick").to_string());
complete_message
}