diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-01-22 15:57:06 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-01-22 15:57:06 +0000 |
commit | 8934ec9c4bd2529db698a5a022e7833918c2ac03 (patch) | |
tree | dea90791503d01e8a71ec7877407d9091a83168d /src/modules/m_messageflood.cpp | |
parent | 02280596a038d1d7ad245a2c7808d57d80ab0a42 (diff) |
Fixed 005 to be f not L
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2827 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_messageflood.cpp')
-rw-r--r-- | src/modules/m_messageflood.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_messageflood.cpp b/src/modules/m_messageflood.cpp index 980c78dff..10048ccf0 100644 --- a/src/modules/m_messageflood.cpp +++ b/src/modules/m_messageflood.cpp @@ -148,7 +148,7 @@ class ModuleMsgFlood : public Module // By doing this we're *assuming* no other module has fucked up the CHANMODES= // section of the 005 numeric. If they have, we're going DOWN in a blaze of glory, // with a honking great EXCEPTION :) - temp1.insert(temp1.find(",")+1,"L"); + temp1.insert(temp1.find(",")+1,"f"); } temp2 = temp2 + temp1 + " "; } |