Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #1282 from Zarthus/always-send-nick-in-notice
Always send the users name in NOTICE when logging in.
  • Loading branch information
DarthGandalf committed Jun 26, 2016
2 parents b7309cd + 3ed914a commit ff2d1e4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Client.cpp
Expand Up @@ -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.");
Expand Down

0 comments on commit ff2d1e4

Please sign in to comment.