diff options
author | Adam <Adam@anope.org> | 2014-11-25 09:00:15 -0500 |
---|---|---|
committer | Adam <Adam@anope.org> | 2014-11-25 09:00:15 -0500 |
commit | 4f33b17f96257b0ad4b87339509e8a5a8ea5ed77 (patch) | |
tree | 5097b64dd49be31118959cc2f848f2b2aac5cdbf | |
parent | 0cdab8697886d32d346ee3c076a2b274611b2f82 (diff) |
Move automatically identified for log message to users
-rw-r--r-- | modules/pseudoclients/nickserv.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/pseudoclients/nickserv.cpp b/modules/pseudoclients/nickserv.cpp index c299c0da3..f43aa7b4a 100644 --- a/modules/pseudoclients/nickserv.cpp +++ b/modules/pseudoclients/nickserv.cpp @@ -441,7 +441,7 @@ class NickServCore : public Module, public NickServService IRCD->SendLogin(u, na); if (!Config->GetModule("nickserv")->Get<bool>("nonicknameownership") && na->nc == u->Account() && !na->nc->HasExt("UNCONFIRMED")) u->SetMode(NickServ, "REGISTERED"); - Log(NickServ) << u->GetMask() << " automatically identified for group " << u->Account()->display; + Log(u, "", NickServ) << u->GetMask() << " automatically identified for group " << u->Account()->display; } if (!u->nick.equals_ci(oldnick) && old_na) |