diff options
author | Attila Molnar <attilamolnar@hush.com> | 2015-07-02 23:52:15 +0200 |
---|---|---|
committer | Attila Molnar <attilamolnar@hush.com> | 2015-07-02 23:52:15 +0200 |
commit | fee097c0593d76ac694ec53ef68651bf1218f5af (patch) | |
tree | 72d195d4c33d3d53c7aae14d2194d40890bd5dbb /src | |
parent | 8320bcc9df1ea89a47257c9f9c70aa6d476beaa8 (diff) | |
parent | 451784d05664d9da7b8a90af903733ee2e454353 (diff) |
Merge pull request #1069 from del6597/patch-1
Update m_blockcaps.cpp
Diffstat (limited to 'src')
-rw-r--r-- | src/modules/m_blockcaps.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_blockcaps.cpp b/src/modules/m_blockcaps.cpp index 0a64a75b5..57f86afd1 100644 --- a/src/modules/m_blockcaps.cpp +++ b/src/modules/m_blockcaps.cpp @@ -74,7 +74,7 @@ public: if (((caps * 100) / text.length()) >= percent) { - user->WriteNumeric(ERR_CANNOTSENDTOCHAN, "%s :Your message cannot contain more than %d%% capital letters if it's longer than %d characters", c->name.c_str(), percent, minlen); + user->WriteNumeric(ERR_CANNOTSENDTOCHAN, "%s :Your message cannot contain %d%% or more capital letters if it's longer than %d characters", c->name.c_str(), percent, minlen); return MOD_RES_DENY; } } |