mirror of
https://github.com/anope/anope.git
synced 2026-06-27 05:26:38 +02:00
Made the flags class take an optional size arg
This commit is contained in:
+1
-1
@@ -97,7 +97,7 @@ void Channel::JoinUser(User *user)
|
||||
{
|
||||
Alog(LOG_DEBUG) << user->nick << " joins " << this->name;
|
||||
|
||||
Flags<ChannelModeName> *Status = new Flags<ChannelModeName>;
|
||||
Flags<ChannelModeName, CMODE_END> *Status = new Flags<ChannelModeName, CMODE_END>;
|
||||
ChannelContainer *cc = new ChannelContainer(this);
|
||||
cc->Status = Status;
|
||||
user->chans.push_back(cc);
|
||||
|
||||
Reference in New Issue
Block a user