diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-01-28 22:16:12 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-01-28 22:16:12 +0000 |
commit | 74fe541922aa184a13151f9695f3c3e2b0ac25fe (patch) | |
tree | 10ac4bc063f0d707dc70d991978c1f00615956cc /src/modules | |
parent | 5f8bd5770222d05a0cb9299990cb7b86145f8fd9 (diff) |
Changed On005Numeric to use InsertMode (we left one out?)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2956 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules')
-rw-r--r-- | src/modules/m_operchans.cpp | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/src/modules/m_operchans.cpp b/src/modules/m_operchans.cpp index 74161200e..c15cd2b58 100644 --- a/src/modules/m_operchans.cpp +++ b/src/modules/m_operchans.cpp @@ -69,21 +69,7 @@ class ModuleOperChans : 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 + "O"; - } - temp2 = temp2 + temp1 + " "; - } - if (temp2.length()) - output = temp2.substr(0,temp2.length()-1); + InsertMode(output,"O",4); } virtual int OnUserPreJoin(userrec* user, chanrec* chan, const char* cname) |