1
0
mirror of https://github.com/anope/anope.git synced 2026-06-28 18:36:39 +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
+1 -1
View File
@@ -91,7 +91,7 @@ void Channel::JoinUser(User *user)
{
Alog(LOG_DEBUG) << user->nick << " joins " << this->name;
Flags<ChannelModeName, CMODE_END> *Status = new Flags<ChannelModeName, CMODE_END>;
Flags<ChannelModeName> *Status = new Flags<ChannelModeName>;
ChannelContainer *cc = new ChannelContainer(this);
cc->Status = Status;
user->chans.push_back(cc);