summaryrefslogtreecommitdiff
path: root/src/inspircd.cpp
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-12-16 11:21:22 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-12-16 11:21:22 +0000
commitddb4ad9ce46b61583917d9a5db0f9fda9f00d65f (patch)
tree9b5cb0b7633561330e1bea94bef0de137cc169a6 /src/inspircd.cpp
parent4c49bf3b29c9f64afc0221cf8beb9da666424dca (diff)
Moved mode stuff into modeparser
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2520 e03df62e-2008-0410-955e-edbf42e46eb7
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();