From f85091129c40facd69a72bbc00084fe5c3c0c02f Mon Sep 17 00:00:00 2001 From: brain Date: Mon, 12 Dec 2005 17:15:27 +0000 Subject: Commented more stuff git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2347 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/inspircd.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/inspircd.cpp b/src/inspircd.cpp index f75f59580..95c9c085f 100644 --- a/src/inspircd.cpp +++ b/src/inspircd.cpp @@ -2677,14 +2677,14 @@ int InspIRCd(char** argv, int argc) // *FIX* Instead of closing sockets in kill_link when they receive the ERROR :blah line, we should queue // them in a list, then reap the list every second or so. - if (((TIME % 5) == 0) && (!expire_run)) + if (((TIME % 8) == 0) && (!expire_run)) { expire_lines(); FOREACH_MOD OnBackgroundTimer(TIME); expire_run = true; continue; } - if ((TIME % 5) == 1) + if ((TIME % 8) == 1) expire_run = false; DoBackgroundUserStuff(TIME); -- cgit v1.2.3