1
0
mirror of https://github.com/anope/anope.git synced 2026-06-28 15:16:38 +02:00

Made privilege names case insensitive

This commit is contained in:
Adam
2013-04-09 14:48:24 -05:00
parent b35665bb54
commit b76b2e11c8
3 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -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;