From c2906e93be35abeea3e652273a7ff1928db8aae3 Mon Sep 17 00:00:00 2001 From: brain Date: Wed, 22 Feb 2006 20:14:33 +0000 Subject: Changed triggering time of OnBackgroundTimer to 5 secs (from 8) Fixed typo in new functions git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3288 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/inspircd.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/inspircd.cpp') diff --git a/src/inspircd.cpp b/src/inspircd.cpp index 6a9c68847..b806776c2 100644 --- a/src/inspircd.cpp +++ b/src/inspircd.cpp @@ -637,14 +637,14 @@ int InspIRCd::Run() * timing using this event, so we dont have to * time this exactly). */ - if (((TIME % 8) == 0) && (!expire_run)) + if (((TIME % 5) == 0) && (!expire_run)) { expire_lines(); FOREACH_MOD(I_OnBackgroundTimer,OnBackgroundTimer(TIME)); expire_run = true; continue; } - else if ((TIME % 8) == 1) + else if ((TIME % 5) == 1) { expire_run = false; } -- cgit v1.3.1-10-gc9f91