summaryrefslogtreecommitdiff
path: root/src/inspircd.cpp
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-05-29 18:14:13 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-05-29 18:14:13 +0000
commitc2624f71e1260881610dc6109f0b3ad61ae4f31a (patch)
tree032f15a7f1efe96b5ec38654f7b70320b3508555 /src/inspircd.cpp
parentd9b0571f38215a4cd3ac176c453d5a8729625abb (diff)
Added m_watch.cpp (provides /WATCH for notify) and fixes to allow it to work
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1556 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/inspircd.cpp')
-rw-r--r--src/inspircd.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/inspircd.cpp b/src/inspircd.cpp
index 37c98bb1b..c780b8bf1 100644
--- a/src/inspircd.cpp
+++ b/src/inspircd.cpp
@@ -1607,6 +1607,7 @@ void FullConnectUser(userrec* user)
// fix by brain: these should be AFTER the N token, so other servers know what the HELL we're on about... :)
FOREACH_MOD OnUserConnect(user);
+ FOREACH_MOD OnGlobalConnect(user);
WriteOpers("*** Client connecting on port %lu: %s!%s@%s [%s]",(unsigned long)user->port,user->nick,user->ident,user->host,user->ip);
}