From 26e466c677953313dce3ca98362025f9fa0b4cd2 Mon Sep 17 00:00:00 2001 From: Jos Date: Sun, 25 Jan 2015 10:25:13 +0100 Subject: [PATCH] More detailed instructions on how to connect to ZNC when not yet logged in. The message now mentions you should configure your client to automatically log you in, and also lets you know how to connect to a specific network. --- src/Client.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/Client.cpp b/src/Client.cpp index 15c9a3b7..463559f0 100644 --- a/src/Client.cpp +++ b/src/Client.cpp @@ -82,7 +82,10 @@ void CClient::SendRequiredPasswordNotice() { PutClient(":irc.znc.in 464 " + GetNick() + " :Password required"); PutClient(":irc.znc.in NOTICE AUTH :*** " "You need to send your password. " - "Try /quote PASS /:"); + "Configure your client to send a server password."); + PutClient(":irc.znc.in NOTICE AUTH :*** " + "To connect now, you can use /quote PASS :, " + "or /quote PASS /: to connect to a specific network."); } void CClient::ReadLine(const CString& sData) {