summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorom <om@e03df62e-2008-0410-955e-edbf42e46eb7>2006-01-28 22:21:30 +0000
committerom <om@e03df62e-2008-0410-955e-edbf42e46eb7>2006-01-28 22:21:30 +0000
commitf45295b0ed1341b68cb82495ca5c4c566f368f79 (patch)
tree0720ea88973ff60c79dac8e7b9228cb24000f747 /src
parent74fe541922aa184a13151f9695f3c3e2b0ac25fe (diff)
Make m_services use InserMode (are we done yet?)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2957 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src')
-rw-r--r--src/modules/m_services.cpp22
1 files changed, 4 insertions, 18 deletions
diff --git a/src/modules/m_services.cpp b/src/modules/m_services.cpp
index 2a9c47dd5..c4f867ac3 100644
--- a/src/modules/m_services.cpp
+++ b/src/modules/m_services.cpp
@@ -46,24 +46,10 @@ class ModuleServices : public Module
kludgeme = false;
}
- virtual void On005Numeric(std::string &output)
- {
- std::stringstream line(output);
- std::string temp1, temp2;
- while (!line.eof())
- {
- line >> temp1;
- if (temp1.substr(0,10) == "CHANMODES=")
- {
- // append the chanmode to the end
- temp1 = temp1.substr(10,temp1.length());
- temp1 = "CHANMODES=" + temp1 + "rRM";
- }
- temp2 = temp2 + temp1 + " ";
- }
- if (temp2.length())
- output = temp2.substr(0,temp2.length()-1);
- }
+ virtual void On005Numeric(std::string &output)
+ {
+ InsertMode(output, "rRM", 4);
+ }
void Implements(char* List)
{