diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-01-25 20:35:38 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-01-25 20:35:38 +0000 |
commit | 2aa83b37d3df064f1053bd9123673c28f1eff202 (patch) | |
tree | 8f51febf6b184cbdc05f49cbdf03930b51ed6f0b /src | |
parent | e80a1792ae0f75168064164105ff72a3b8ac5580 (diff) |
Changed to InsertMode
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2900 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src')
-rw-r--r-- | src/modules/m_censor.cpp | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/src/modules/m_censor.cpp b/src/modules/m_censor.cpp index cf86aa0df..45f5af551 100644 --- a/src/modules/m_censor.cpp +++ b/src/modules/m_censor.cpp @@ -69,21 +69,7 @@ class ModuleCensor : public Module 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 + "G"; - } - temp2 = temp2 + temp1 + " "; - } - if (temp2.length()) - output = temp2.substr(0,temp2.length()-1); + InsertMode(output,"G",4); } |