diff options
author | Adam <Adam@anope.org> | 2010-06-27 02:41:48 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2010-06-27 02:41:48 -0400 |
commit | 57caa0b53f53927c72811ffffda8bb527975860f (patch) | |
tree | 7fef9b12d2d86758acb9198001f88f072e8a31d6 /src/init.cpp | |
parent | d49aee6cf88c79220eb785245257544c8051247f (diff) |
Made Anope track its own clients internally as if they were real users
Diffstat (limited to 'src/init.cpp')
-rw-r--r-- | src/init.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/init.cpp b/src/init.cpp index 88a9e441b..07597c829 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -39,7 +39,7 @@ void introduce_user(const std::string &user) ci::string ci_bi_nick(bi->nick.c_str()); if (user.empty() || ci_bi_nick == user) { - ircdproto->SendClientIntroduction(bi->nick, bi->user, bi->host, bi->real, ircd->pseudoclient_mode, bi->uid); + ircdproto->SendClientIntroduction(bi->nick, bi->GetIdent(), bi->host, bi->realname, ircd->pseudoclient_mode, bi->GetUID()); XLine x(bi->nick.c_str(), "Reserved for services"); ircdproto->SendSQLine(&x); } |