summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2010-10-16 17:46:56 -0400
committerAdam <Adam@anope.org>2010-10-16 17:46:56 -0400
commit4f317a242104b623d2e5257bc672fd56c0240a0e (patch)
tree699e7b484b66be607e0e1ce0b30547b7a0d0bbb7 /modules
parentf3c2933542d8702ebca37a20d721c8ca6c918771 (diff)
Made /cs help levels desc not case sensitive
Diffstat (limited to 'modules')
-rw-r--r--modules/core/cs_access.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/core/cs_access.cpp b/modules/core/cs_access.cpp
index e44309d3a..860632f58 100644
--- a/modules/core/cs_access.cpp
+++ b/modules/core/cs_access.cpp
@@ -608,7 +608,7 @@ class CommandCSLevels : public Command
bool OnHelp(User *u, const Anope::string &subcommand)
{
- if (subcommand == "DESC")
+ if (subcommand.equals_ci("DESC"))
{
int i;
u->SendMessage(ChanServ, CHAN_HELP_LEVELS_DESC);