1
0
mirror of https://github.com/anope/anope.git synced 2026-07-05 03:33:12 +02:00

Call User::Login after sending the login event, in case a module wants to act on the fact that the ircd sees the user as logged in

This commit is contained in:
Adam
2014-01-14 03:49:22 -05:00
parent 974adb7ce1
commit ccae59430a
+2 -2
View File
@@ -303,10 +303,10 @@ void User::Identify(NickAlias *na)
na->last_seen = Anope::CurTime;
}
this->Login(na->nc);
IRCD->SendLogin(this);
this->Login(na->nc);
FOREACH_MOD(OnNickIdentify, (this));
if (this->IsServicesOper())