diff options
| author | 2006-07-07 18:00:12 +0000 | |
|---|---|---|
| committer | 2006-07-07 18:00:12 +0000 | |
| commit | 27edb86adbea04b4b17166cfa0f5f1cd7ba0e3c3 (patch) | |
| tree | c1a087809da2beb3e883af2e64506a92c8cecd2f /src/mode.cpp | |
| parent | fix channel mode +b (diff) | |
Add mode +b to active list
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4135 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/mode.cpp')
| -rw-r--r-- | src/mode.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mode.cpp b/src/mode.cpp index b81b26bab..0fe00f87d 100644 --- a/src/mode.cpp +++ b/src/mode.cpp @@ -48,6 +48,7 @@ using namespace std; #include "modes/cmode_s.h" #include "modes/cmode_p.h" +#include "modes/cmode_b.h" extern int MODCOUNT; extern std::vector<Module*> modules; @@ -594,5 +595,6 @@ ModeParser::ModeParser() /* Initialise the RFC mode letters */ this->AddMode(new ModeChannelSecret, 's'); this->AddMode(new ModeChannelPrivate, 'p'); + this->AddMode(new ModeChannelBan, 'b'); } |
