summaryrefslogtreecommitdiff
path: root/src/inspircd.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/inspircd.cpp')
-rw-r--r--src/inspircd.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/inspircd.cpp b/src/inspircd.cpp
index 32f6230c2..89b7d9e8c 100644
--- a/src/inspircd.cpp
+++ b/src/inspircd.cpp
@@ -93,6 +93,7 @@ serverstats* stats = new serverstats;
Server* MyServer = new Server;
ServerConfig *Config = new ServerConfig;
CommandParser *Parser = NULL;
+ModeParser *ModeGrok = NULL;
user_hash clientlist;
chan_hash chanlist;
@@ -188,6 +189,7 @@ InspIRCd::InspIRCd(int argc, char** argv)
Config->ClearStack();
Config->Read(true,NULL);
CheckRoot();
+ ModeGrok = new ModeParser();
Parser = new CommandParser();
AddServerName(Config->ServerName);
CheckDie();