diff options
| author | 2005-12-26 17:26:16 +0000 | |
|---|---|---|
| committer | 2005-12-26 17:26:16 +0000 | |
| commit | a9b90ecb4329498aba52da6aaa9812e3a70b8e11 (patch) | |
| tree | 38053a6bfa07486c6fc5cc46ebddb5e32306014a /src/modules.cpp | |
| parent | Allow halfop to dehalfop themselves` (diff) | |
Adding hook type checking to event calls to speed them up
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2653 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules.cpp')
| -rw-r--r-- | src/modules.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/modules.cpp b/src/modules.cpp index c175d7a57..01aef0802 100644 --- a/src/modules.cpp +++ b/src/modules.cpp @@ -204,7 +204,7 @@ Module* Event::GetSource() char* Event::Send() { - FOREACH_MOD OnEvent(this); + FOREACH_MOD(I_OnEvent,OnEvent(this)); return NULL; } @@ -296,6 +296,7 @@ void Module::OnDelKLine(userrec* source, std::string hostmask) { }; void Module::OnDelQLine(userrec* source, std::string nickmask) { }; void Module::OnDelELine(userrec* source, std::string hostmask) { }; void Module::OnCleanup(int target_type, void* item) { }; +void Module::Implements(bool &Implements[255]) { for (int j = 0; j < 255; j++) Implements[j] = false; }; /* server is a wrapper class that provides methods to all of the C-style * exports in the core |
