summaryrefslogtreecommitdiff
path: root/src/channels.cpp
diff options
context:
space:
mode:
authorspecial <special@e03df62e-2008-0410-955e-edbf42e46eb7>2006-10-01 00:19:36 +0000
committerspecial <special@e03df62e-2008-0410-955e-edbf42e46eb7>2006-10-01 00:19:36 +0000
commit2d86278096674dea9d475747a7c80bede538fbc8 (patch)
treea3c0df7181f19f42f13cc239ab214696b9699021 /src/channels.cpp
parent919dac4ccc5e8808fa7c9b03c2504c51a6034b2e (diff)
Added OnPostJoin, which is (at the moment) almost exactly identical to OnUserJoin but called after, so you can play with linking
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5361 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/channels.cpp')
-rw-r--r--src/channels.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/channels.cpp b/src/channels.cpp
index 3f74698d5..de698883f 100644
--- a/src/channels.cpp
+++ b/src/channels.cpp
@@ -427,6 +427,7 @@ chanrec* chanrec::ForceChan(InspIRCd* Instance, chanrec* Ptr,ucrec *a,userrec* u
Ptr->UserList(user);
}
FOREACH_MOD_I(Instance,I_OnUserJoin,OnUserJoin(user,Ptr));
+ FOREACH_MOD_I(Instance,I_OnPostJoin,OnPostJoin(user,Ptr));
return Ptr;
}