diff options
| author | 2008-06-01 14:18:07 +0000 | |
|---|---|---|
| committer | 2008-06-01 14:18:07 +0000 | |
| commit | ada434820d2d81d8e4bcf633ebcbfef20606b51c (patch) | |
| tree | 945c80ec070f872cd32cb8a8706079b28ce88cbc /src/users.cpp | |
| parent | Forward port r9825: Fix bug found by the atheme migration testing: +V should ... (diff) | |
Add ProtocolInterface::Introduce() to prevent confusion over event ordering, and allow for more flexible protocol use
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9827 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/users.cpp')
| -rw-r--r-- | src/users.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/users.cpp b/src/users.cpp index c892c51f5..143313af2 100644 --- a/src/users.cpp +++ b/src/users.cpp @@ -959,6 +959,8 @@ void User::FullConnect() this->registered = REG_ALL; + ServerInstance->PI->Introduce(this); + FOREACH_MOD(I_OnPostConnect,OnPostConnect(this)); ServerInstance->SNO->WriteToSnoMask('c',"Client connecting on port %d: %s!%s@%s [%s] [%s]", this->GetPort(), this->nick.c_str(), this->ident.c_str(), this->host.c_str(), this->GetIPString(), this->fullname.c_str()); |
