diff options
author | Adam <Adam@anope.org> | 2014-04-26 18:30:54 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2014-04-26 18:30:54 -0400 |
commit | 8021a53ac47d95f874cc50bd2a0a73715164fae3 (patch) | |
tree | 5f16f630d37f41d57a9b8e087238ca2cd426fe7a | |
parent | 0663f5e41296df36c196425f72516e7dad7c8f2d (diff) |
Fix misc help output to not be case sensitive
-rw-r--r-- | modules/commands/cs_set_misc.cpp | 2 | ||||
-rw-r--r-- | modules/commands/ns_set_misc.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/commands/cs_set_misc.cpp b/modules/commands/cs_set_misc.cpp index 481b54cb9..81b8c72fa 100644 --- a/modules/commands/cs_set_misc.cpp +++ b/modules/commands/cs_set_misc.cpp @@ -13,7 +13,7 @@ static Module *me; -static std::map<Anope::string, Anope::string> descriptions; +static Anope::map<Anope::string> descriptions; struct CSMiscData; static Anope::map<ExtensibleItem<CSMiscData> *> items; diff --git a/modules/commands/ns_set_misc.cpp b/modules/commands/ns_set_misc.cpp index 496e3a4e2..455a651fb 100644 --- a/modules/commands/ns_set_misc.cpp +++ b/modules/commands/ns_set_misc.cpp @@ -14,7 +14,7 @@ static Module *me; -static std::map<Anope::string, Anope::string> descriptions; +static Anope::map<Anope::string> descriptions; struct NSMiscData; static Anope::map<ExtensibleItem<NSMiscData> *> items; |