summaryrefslogtreecommitdiff
path: root/src/modules/m_blockcaps.cpp
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2009-03-22 14:44:43 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2009-03-22 14:44:43 +0000
commitd84050a6c8334774feb71ed0b3a8a60977b376a5 (patch)
tree92401fdfe164878c9936b7a6e4fe69c9b403219f /src/modules/m_blockcaps.cpp
parent83ef6107c1a8741d0f67b5a6284d16f2f508a96b (diff)
Nicer reworded numeric from ankit, thanks
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11243 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_blockcaps.cpp')
-rw-r--r--src/modules/m_blockcaps.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_blockcaps.cpp b/src/modules/m_blockcaps.cpp
index 0b1cc2261..4c1939ca5 100644
--- a/src/modules/m_blockcaps.cpp
+++ b/src/modules/m_blockcaps.cpp
@@ -90,7 +90,7 @@ public:
}
if ( ((caps*100)/(int)text.length()) >= percent )
{
- user->WriteNumeric(ERR_CANNOTSENDTOCHAN, "%s %s :Your line cannot be more than %d%% capital letters if it is %d or more letters long", user->nick.c_str(), c->name.c_str(), percent, minlen);
+ user->WriteNumeric(ERR_CANNOTSENDTOCHAN, "%s %s :Your message cannot contain more than %d%% capital letters if it's longer than %d characters", user->nick.c_str(), c->name.c_str(), percent, minlen);
return 1;
}
}