Always send the users name in NOTICE when logging in.

This commit is contained in:
Jos Ahrens
2016-06-20 08:06:00 +01:00
parent 4435baf1ee
commit 3ed914aa81

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.");