From bdd8422e0f2534032219dc8198fdce99d5567772 Mon Sep 17 00:00:00 2001 From: tec <tec@ucc.gu.uwa.edu.au> Date: Sun, 5 Apr 2020 12:13:17 +0800 Subject: [PATCH] Remove accidental line-spreading of welcome message --- src/user_management.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/user_management.rs b/src/user_management.rs index b3e66bb..28b72a4 100644 --- a/src/user_management.rs +++ b/src/user_management.rs @@ -22,9 +22,9 @@ pub fn new_member(ctx: &Context, mut new_member: Member) { 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.mention(&CONFIG.readme_channel); - message.push_line(" to get yourself some roles for directed pings 😊, and "); + message.push(" to get yourself some roles for directed pings 😊, and "); message.push_mono(format!("{}register username", CONFIG.command_prefix)); - message.push_line(" to link to your UCC account."); + message.push(" to link to your UCC account."); send_message!(CONFIG.welcome_channel, &ctx, message.build()); let mut message = MessageBuilder::new(); -- GitLab