diff options
author | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-10-21 12:22:39 +0000 |
---|---|---|
committer | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-10-21 12:22:39 +0000 |
commit | 4487dde76ffbdb21e7dc319b3b87d09c3cf60d8c (patch) | |
tree | ba24a999e2d1d9a5d708ef3df66058d35d18f410 /src/inspircd.cpp | |
parent | 7c5ab78be2fabce6d11e13ec819799527ddb738c (diff) |
Remove next_call garbage.. It didn't really do much more than obfuscate things. InspIRCd::DoBackgroundUserStuff() is now called once per second, roughly. This will (of course) not be going into 1.1.x
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8241 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/inspircd.cpp')
-rw-r--r-- | src/inspircd.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/inspircd.cpp b/src/inspircd.cpp index 54243e807..d0b5bbbe0 100644 --- a/src/inspircd.cpp +++ b/src/inspircd.cpp @@ -338,7 +338,6 @@ InspIRCd::InspIRCd(int argc, char** argv) this->SNO = new SnomaskManager(this); this->TIME = this->OLDTIME = this->startup_time = time(NULL); this->time_delta = 0; - this->next_call = this->TIME + 3; srand(this->TIME); *this->LogFileName = 0; @@ -615,14 +614,18 @@ int InspIRCd::Run() if (TIME != OLDTIME) { if (TIME < OLDTIME) + { WriteOpers("*** \002EH?!\002 -- Time is flowing BACKWARDS in this dimension! Clock drifted backwards %d secs.",abs(OLDTIME-TIME)); + } + if ((TIME % 3600) == 0) { this->RehashUsersAndChans(); FOREACH_MOD_I(this, I_OnGarbageCollect, OnGarbageCollect()); } + Timers->TickTimers(TIME); - this->DoBackgroundUserStuff(TIME); + this->DoBackgroundUserStuff(); if ((TIME % 5) == 0) { |