From 3ed914aa8111d8baea571300077492afcda24ca0 Mon Sep 17 00:00:00 2001 From: Jos Ahrens Date: Mon, 20 Jun 2016 08:06:00 +0100 Subject: [PATCH] Always send the users name in NOTICE when logging in. --- src/Client.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Client.cpp b/src/Client.cpp index abbb79ae..43caa646 100644 --- a/src/Client.cpp +++ b/src/Client.cpp @@ -83,11 +83,11 @@ CClient::~CClient() { void CClient::SendRequiredPasswordNotice() { PutClient(":irc.znc.in 464 " + GetNick() + " :Password required"); PutClient( - ":irc.znc.in NOTICE AUTH :*** " + ":irc.znc.in NOTICE " + GetNick() + " :*** " "You need to send your password. " "Configure your client to send a server password."); PutClient( - ":irc.znc.in NOTICE AUTH :*** " + ":irc.znc.in NOTICE " + GetNick() + " :*** " "To connect now, you can use /quote PASS :, " "or /quote PASS /: to connect to a " "specific network.");