diff options
author | Adam <Adam@anope.org> | 2013-04-09 14:48:24 -0500 |
---|---|---|
committer | Adam <Adam@anope.org> | 2013-04-09 14:48:24 -0500 |
commit | b76b2e11c80bb100c48e4eec9a51c53cd079d181 (patch) | |
tree | 304c0df94ec540fc70198bf9b7e1eb3442ad775b /include/regchannel.h | |
parent | b35665bb5427f84a42648cc65d1eb8aa5af8d131 (diff) |
Made privilege names case insensitive
Diffstat (limited to 'include/regchannel.h')
-rw-r--r-- | include/regchannel.h | 2 |
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; |