summaryrefslogtreecommitdiff
path: root/src/mode.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mode.cpp')
-rw-r--r--src/mode.cpp2
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');
}