1
0
mirror of https://github.com/anope/anope.git synced 2026-06-30 06:56:37 +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 -5
View File
@@ -144,12 +144,9 @@ class PlexusProto : public IRCDProto
UplinkSocket::Message(source) << "ENCAP * SVSMODE " << u->GetUID() << " " << u->timestamp << " " << buf;
}
void SendLogin(User *u) anope_override
void SendLogin(User *u, NickAlias *na) anope_override
{
if (!u->Account())
return;
UplinkSocket::Message(Me) << "ENCAP * SU " << u->GetUID() << " " << u->Account()->display;
UplinkSocket::Message(Me) << "ENCAP * SU " << u->GetUID() << " " << na->nc->display;
}
void SendLogout(User *u) anope_override