summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-01-25 20:47:22 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-01-25 20:47:22 +0000
commit1bc39e97ccdbfd84e533d6dc6bf266102a4060bd (patch)
treece72f630a4a74c56c3dc8cecbcee2c2f96e918b5
parent79262c9d8751eca8cff50eca0b9f5b57f6730577 (diff)
Tidied up to use InsertMode()
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2903 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r--src/modules/m_stripcolor.cpp16
1 files changed, 1 insertions, 15 deletions
diff --git a/src/modules/m_stripcolor.cpp b/src/modules/m_stripcolor.cpp
index 625b3fc1a..d51e7ca59 100644
--- a/src/modules/m_stripcolor.cpp
+++ b/src/modules/m_stripcolor.cpp
@@ -59,21 +59,7 @@ class ModuleStripColor : 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 + "S";
- }
- temp2 = temp2 + temp1 + " ";
- }
- if (temp2.length())
- output = temp2.substr(0,temp2.length()-1);
+ InsertMode(output,"S",4);
}
virtual ~ModuleStripColor()