aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_spanningtree/main.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2022-05-17 13:41:40 +0100
committerGravatar Sadie Powell2022-05-17 13:45:18 +0100
commitc31e4c6a970b844e500f3feb807e1801b2d55543 (patch)
tree8ccef31dd5f1dbe97ee42573bbfe54beae2e5f7e /src/modules/m_spanningtree/main.cpp
parentStore a set of list mode pointers in Membership instead of characters. (diff)
Add a typedef for a mode rank.
Diffstat (limited to 'src/modules/m_spanningtree/main.cpp')
-rw-r--r--src/modules/m_spanningtree/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_spanningtree/main.cpp b/src/modules/m_spanningtree/main.cpp
index fd130c787..cc5f27ccc 100644
--- a/src/modules/m_spanningtree/main.cpp
+++ b/src/modules/m_spanningtree/main.cpp
@@ -374,7 +374,7 @@ ModResult ModuleSpanningTree::HandleConnect(const CommandBase::Params& parameter
return MOD_RES_DENY;
}
-void ModuleSpanningTree::OnUserInvite(User* source, User* dest, Channel* channel, time_t expiry, unsigned int notifyrank, CUList& notifyexcepts)
+void ModuleSpanningTree::OnUserInvite(User* source, User* dest, Channel* channel, time_t expiry, ModeHandler::Rank notifyrank, CUList& notifyexcepts)
{
if (IS_LOCAL(source))
{