1
0
mirror of https://github.com/anope/anope.git synced 2026-07-03 13:03:14 +02:00

Added support for tracking inspircd2.0 usermode +Q and cahnged the Flags bitsets for modes to not use a max defined value, it can go over

This commit is contained in:
Adam
2010-07-29 23:08:47 -04:00
parent cc64903179
commit abfc9926db
10 changed files with 20 additions and 18 deletions
+2 -2
View File
@@ -18,9 +18,9 @@ std::vector<NewsItem *> News;
std::vector<std::bitset<32> > DefCon;
bool DefConModesSet = false;
/* Defcon modes mlocked on */
Flags<ChannelModeName, CMODE_END> DefConModesOn;
Flags<ChannelModeName> DefConModesOn;
/* Defcon modes mlocked off */
Flags<ChannelModeName, CMODE_END> DefConModesOff;
Flags<ChannelModeName> DefConModesOff;
/* Map of Modesa and Params for DefCon */
std::map<ChannelModeName, Anope::string> DefConModesOnParams;