Merge pull request #1282 from Zarthus/always-send-nick-in-notice

Always send the users name in NOTICE when logging in.
This commit is contained in:
Alexey Sokolov
2016-06-26 20:55:02 +01:00
committed by GitHub

View File

@@ -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 <username>:<password>, "
"or /quote PASS <username>/<network>:<password> to connect to a "
"specific network.");