summaryrefslogtreecommitdiff
path: root/src/modules/m_conn_umodes.cpp
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-10-06 22:02:55 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-10-06 22:02:55 +0000
commit888d8e77cde6c32165f6733b013e46fd4f7565ff (patch)
tree09eef7fdb9a32911d3abb56a33251634a115d645 /src/modules/m_conn_umodes.cpp
parent7e3ccd956de5825dbb62295506656768e8a141bf (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
Diffstat (limited to 'src/modules/m_conn_umodes.cpp')
-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;
}