diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/config.cpp | 1 | ||||
-rw-r--r-- | src/main.cpp | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/config.cpp b/src/config.cpp index 38e072de8..96ed47917 100644 --- a/src/config.cpp +++ b/src/config.cpp @@ -187,6 +187,7 @@ Conf::Conf() : Block("") this->DefPrivmsg = std::find(defaults.begin(), defaults.end(), "msg") != defaults.end(); } this->DefLanguage = options->Get<const Anope::string &>("defaultlanguage"); + this->TimeoutCheck = options->Get<time_t>("timeoutcheck"); for (int i = 0; i < this->CountBlock("uplink"); ++i) { diff --git a/src/main.cpp b/src/main.cpp index 12fc1335c..99174279b 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -157,7 +157,7 @@ int main(int ac, char **av, char **envp) Log(LOG_DEBUG_2) << "Top of main loop"; /* Process timers */ - if (Anope::CurTime - last_check >= Config->GetBlock("options")->Get<time_t>("timeoutcheck")) + if (Anope::CurTime - last_check >= Config->TimeoutCheck) { TimerManager::TickTimers(Anope::CurTime); last_check = Anope::CurTime; |