From 3c86300fa7af21e32a38b8b6da32746df76fad0f Mon Sep 17 00:00:00 2001 From: tec <tec@ucc.gu.uwa.edu.au> Date: Sun, 5 Apr 2020 15:25:42 +0800 Subject: [PATCH] Remove one more newline from the welcome message --- src/user_management.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/user_management.rs b/src/user_management.rs index 28b72a4..6a9d78a 100644 --- a/src/user_management.rs +++ b/src/user_management.rs @@ -20,7 +20,7 @@ pub fn new_member(ctx: &Context, mut new_member: Member) { message.push_line("! Would you care to introduce yourself?"); message.push_line("If you're not sure where to start, perhaps you could tell us about your projects, your first computer…"); message.push_line("You should also know that we follow the Freenode Channel Guidelines: https://freenode.net/changuide, and try to avoid defamatory content."); - message.push_line("Make sure to check out "); + message.push("Make sure to check out "); message.mention(&CONFIG.readme_channel); message.push(" to get yourself some roles for directed pings 😊, and "); message.push_mono(format!("{}register username", CONFIG.command_prefix)); -- GitLab