diff options
| author | 2015-12-06 11:24:39 +0100 | |
|---|---|---|
| committer | 2015-12-06 11:24:39 +0100 | |
| commit | fd87f9f073dff6e2f21a92c96144fb6c0a46e8e3 (patch) | |
| tree | 2021c3870d73f62bcb5b6df1f644a7eec3260c80 /src/modules/m_spanningtree/main.cpp | |
| parent | cmd_invite Fire the OnUserInvite event before announcing the invite (diff) | |
| download | inspircd++-fd87f9f073dff6e2f21a92c96144fb6c0a46e8e3.tar.gz inspircd++-fd87f9f073dff6e2f21a92c96144fb6c0a46e8e3.tar.bz2 inspircd++-fd87f9f073dff6e2f21a92c96144fb6c0a46e8e3.zip | |
Add minimum channel rank and exception list parameters to the OnUserInvite hook
Diffstat (limited to 'src/modules/m_spanningtree/main.cpp')
| -rw-r--r-- | src/modules/m_spanningtree/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_spanningtree/main.cpp b/src/modules/m_spanningtree/main.cpp index 98cf3188f..4e45b4fe8 100644 --- a/src/modules/m_spanningtree/main.cpp +++ b/src/modules/m_spanningtree/main.cpp @@ -358,7 +358,7 @@ ModResult ModuleSpanningTree::HandleConnect(const std::vector<std::string>& para return MOD_RES_DENY; } -void ModuleSpanningTree::OnUserInvite(User* source,User* dest,Channel* channel, time_t expiry) +void ModuleSpanningTree::OnUserInvite(User* source, User* dest, Channel* channel, time_t expiry, unsigned int notifyrank, CUList& notifyexcepts) { if (IS_LOCAL(source)) { |
