Tell user to use PASS <username>/<network> instead of just the username.

In versions prior to 1.0, ZNC did not allow multiple networks per user. The string telling users to connect has never been changed after ZNC 1.0, and this fixes just that.
This commit is contained in:
Jos
2015-01-24 11:40:51 +01:00
parent 7b1133de77
commit 35b5525cc1

View File

@@ -82,7 +82,7 @@ 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 <username>:<password>");
"Try /quote PASS <username>/<network>:<password>");
}
void CClient::ReadLine(const CString& sData) {