summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2007-07-26 16:41:05 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2007-07-26 16:41:05 +0000
commita3008ff654be3dc7a798704bd32666f6ebf2a8c9 (patch)
treef499378a4453f813c29a2be602463de9165712f9
parent6344881c9f672d6cfdc8dd4818e79928181af0e1 (diff)
Forgot to add to init-list
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@7579 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r--src/inspircd.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/inspircd.cpp b/src/inspircd.cpp
index ec26325a1..0de94a316 100644
--- a/src/inspircd.cpp
+++ b/src/inspircd.cpp
@@ -386,10 +386,12 @@ InspIRCd::InspIRCd(int argc, char** argv)
HandleIsNick(this),
HandleIsIdent(this),
HandleFindDescriptor(this),
+ HandleFloodQuitUser(this),
ProcessUser(&HandleProcessUser),
IsNick(&HandleIsNick),
IsIdent(&HandleIsIdent),
- FindDescriptor(&HandleFindDescriptor)
+ FindDescriptor(&HandleFindDescriptor),
+ FloodQuitUser(&HandleFloodQuitUser)
{
int found_ports = 0;
FailedPortList pl;