diff options
author | Adam <Adam@anope.org> | 2013-05-05 02:49:32 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2013-05-05 02:49:32 -0400 |
commit | ee2dcf11b8ff6cad5af4895738f7fe17e3baa9ee (patch) | |
tree | e3d7b9024f3d65b2b2ba069f3208b6b244de0346 /src/config.cpp | |
parent | e91de41278ff5993973999e4e5095360612ec056 (diff) |
Cache timeoutcheck and fix a typo in example.conf
Diffstat (limited to 'src/config.cpp')
-rw-r--r-- | src/config.cpp | 1 |
1 files changed, 1 insertions, 0 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) { |