diff options
author | special <special@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-10-01 00:19:36 +0000 |
---|---|---|
committer | special <special@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-10-01 00:19:36 +0000 |
commit | 2d86278096674dea9d475747a7c80bede538fbc8 (patch) | |
tree | a3c0df7181f19f42f13cc239ab214696b9699021 /src/modules.cpp | |
parent | 919dac4ccc5e8808fa7c9b03c2504c51a6034b2e (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/modules.cpp')
-rw-r--r-- | src/modules.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/modules.cpp b/src/modules.cpp index faee68075..2b62ba382 100644 --- a/src/modules.cpp +++ b/src/modules.cpp @@ -110,6 +110,7 @@ void Module::OnUserConnect(userrec* user) { } void Module::OnUserQuit(userrec* user, const std::string& message) { } void Module::OnUserDisconnect(userrec* user) { } void Module::OnUserJoin(userrec* user, chanrec* channel) { } +void Module::OnPostJoin(userrec* user, chanrec* channel) { } void Module::OnUserPart(userrec* user, chanrec* channel, const std::string &partmessage) { } void Module::OnRehash(const std::string ¶meter) { } void Module::OnServerRaw(std::string &raw, bool inbound, userrec* user) { } |