summaryrefslogtreecommitdiff
path: root/include/regchannel.h
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2013-04-09 14:48:24 -0500
committerAdam <Adam@anope.org>2013-04-09 14:48:24 -0500
commitb76b2e11c80bb100c48e4eec9a51c53cd079d181 (patch)
tree304c0df94ec540fc70198bf9b7e1eb3442ad775b /include/regchannel.h
parentb35665bb5427f84a42648cc65d1eb8aa5af8d131 (diff)
Made privilege names case insensitive
Diffstat (limited to 'include/regchannel.h')
-rw-r--r--include/regchannel.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/regchannel.h b/include/regchannel.h
index 395794594..91cc90ffa 100644
--- a/include/regchannel.h
+++ b/include/regchannel.h
@@ -163,7 +163,7 @@ class CoreExport ChannelInfo : public Serializable, public Extensible
Serialize::Checker<std::vector<ChanAccess *> > access; /* List of authorized users */
Serialize::Checker<std::vector<AutoKick *> > akick; /* List of users to kickban */
Serialize::Checker<std::vector<BadWord *> > badwords; /* List of badwords */
- std::map<Anope::string, int16_t> levels;
+ Anope::map<int16_t> levels;
public:
friend class ChanAccess;