diff options
author | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-08-05 11:30:01 +0000 |
---|---|---|
committer | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-08-05 11:30:01 +0000 |
commit | 4233ad22c0cc94c45f877b75dd964e4b7f82c516 (patch) | |
tree | 9f77e0f650d4f5d13d2c1f3e8edd86e25f4428c9 /src/modules/m_gecosban.cpp | |
parent | 1913c07c2eda9c946850dfd2ebafa498ed8b2970 (diff) |
Use correct method for adding extban type in m_gecosban, add 005 notification of C extban too
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@10089 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_gecosban.cpp')
-rw-r--r-- | src/modules/m_gecosban.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/modules/m_gecosban.cpp b/src/modules/m_gecosban.cpp index 614320623..a59508e06 100644 --- a/src/modules/m_gecosban.cpp +++ b/src/modules/m_gecosban.cpp @@ -54,10 +54,7 @@ class ModuleGecosBan : public Module virtual void On005Numeric(std::string &output) { - if (output.find(" EXTBAN=:") == std::string::npos) - output.append(" EXTBAN=:r"); - else - output.insert(output.find(" EXTBAN=:") + 9, "r"); + ServerInstance->AddExtBanChar('r'); } }; |