1
0
mirror of https://github.com/anope/anope.git synced 2026-07-08 20:03:13 +02:00

Unbreak account stuff from commit ccae59430a.

This commit is contained in:
Adam
2014-01-21 17:20:15 -05:00
parent 67c13b41ee
commit 4d9273efa4
13 changed files with 29 additions and 42 deletions
+2 -2
View File
@@ -112,9 +112,9 @@ class ngIRCdProto : public IRCDProto
UplinkSocket::Message(source) << "KICK " << chan->name << " " << user->nick;
}
void SendLogin(User *u) anope_override
void SendLogin(User *u, NickAlias *na) anope_override
{
UplinkSocket::Message(Me) << "METADATA " << u->GetUID() << " accountname :" << u->Account()->display;
UplinkSocket::Message(Me) << "METADATA " << u->GetUID() << " accountname :" << na->nc->display;
}
void SendLogout(User *u) anope_override