summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar brain2006-10-06 22:02:55 +0000
committerGravatar brain2006-10-06 22:02:55 +0000
commit888d8e77cde6c32165f6733b013e46fd4f7565ff (patch)
tree09eef7fdb9a32911d3abb56a33251634a115d645
parentRevert tweak (diff)
Make this module propogate remote modes by directly calling the MODE command handler rather than using SendMode which would also require spanningtree metadata
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5444 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r--src/modules/m_conn_umodes.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_conn_umodes.cpp b/src/modules/m_conn_umodes.cpp
index 04f6e3baf..241191374 100644
--- a/src/modules/m_conn_umodes.cpp
+++ b/src/modules/m_conn_umodes.cpp
@@ -101,7 +101,7 @@ class ModuleModesOnConnect : public Module
}
}
- ServerInstance->SendMode(modes, size, user);
+ ServerInstance->Parser->CallHandler("MODE", modes, size, user);
}
break;
}