mirror of
https://github.com/znc/znc.git
synced 2026-03-28 17:42:41 +01:00
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:
@@ -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.");
|
||||
|
||||
Reference in New Issue
Block a user