diff options
Diffstat (limited to 'src/modules')
-rw-r--r-- | src/modules/m_blockcaps.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/modules/m_blockcaps.cpp b/src/modules/m_blockcaps.cpp index 3e8fdccc5..88d7ab5f4 100644 --- a/src/modules/m_blockcaps.cpp +++ b/src/modules/m_blockcaps.cpp @@ -68,8 +68,16 @@ public: if (c->IsModeSet('B')) { int caps = 0; + const char* actstr = "\1ACTION "; + for (std::string::iterator i = text.begin(); i != text.end(); i++) + { + /* Smart fix for suggestion from Jobe, ignore CTCP ACTION (part of /ME) */ + if (*actstr && *i == *actstr++) + continue; + caps += capsmap[(unsigned char)*i]; + } if ( ((caps*100)/(int)text.length()) >= percent ) { user->WriteServ( "404 %s %s :Your line cannot be more than %d%% capital letters if it is %d or more letters long", user->nick, c->name, percent, minlen); |