diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-12-30 21:21:26 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-12-30 21:21:26 +0000 |
commit | be692a499ec76b5496a49c41360bde80cc6a3866 (patch) | |
tree | 5a589fc05c628332d28f4fc9508c85e3c4dea6c9 /src | |
parent | 52596ded79465001540e34f94f0098157e87147f (diff) |
Changed background stuff to occur more often
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2709 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src')
-rw-r--r-- | src/inspircd.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/inspircd.cpp b/src/inspircd.cpp index 730e7fea0..0059889b8 100644 --- a/src/inspircd.cpp +++ b/src/inspircd.cpp @@ -478,7 +478,7 @@ int InspIRCd::Run() } /* Once a second, do the background processing */ - if ((TIME != OLDTIME) && ((TIME % 2) == 0)) + if (TIME != OLDTIME) DoBackgroundUserStuff(TIME); /* Call the socket engine to wait on the active |