summaryrefslogtreecommitdiff
path: root/src/inspircd.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/inspircd.cpp')
-rw-r--r--src/inspircd.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/inspircd.cpp b/src/inspircd.cpp
index 4ca4c50d6..8b56706dd 100644
--- a/src/inspircd.cpp
+++ b/src/inspircd.cpp
@@ -625,6 +625,9 @@ int InspIRCd::Run()
*/
if (TIME != OLDTIME)
{
+ /* if any users were quit, take them out */
+ this->GlobalCulls.Apply();
+
if (TIME < OLDTIME)
{
WriteOpers("*** \002EH?!\002 -- Time is flowing BACKWARDS in this dimension! Clock drifted backwards %d secs.",abs(OLDTIME-TIME));
@@ -674,9 +677,6 @@ int InspIRCd::Run()
*/
this->SE->DispatchEvents();
- /* if any users was quit, take them out */
- this->GlobalCulls.Apply();
-
/* If any inspsockets closed, remove them */
this->BufferedSocketCull();