diff options
| author | 2015-11-03 12:40:24 +0100 | |
|---|---|---|
| committer | 2015-11-03 12:40:24 +0100 | |
| commit | 2c51a2bf17b6c377f0207f3d89b4b3f399fc0178 (patch) | |
| tree | 93f446719933bcfcb2f3580fef778a37c70dc57e /src/configreader.cpp | |
| parent | Merge pull request #1093 from SaberUK/master+tsc (diff) | |
| parent | core_channel Implement invite (un)serialization (diff) | |
Merge branch 'master+invite'
Diffstat (limited to 'src/configreader.cpp')
| -rw-r--r-- | src/configreader.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/configreader.cpp b/src/configreader.cpp index 974e52abf..a81a1b646 100644 --- a/src/configreader.cpp +++ b/src/configreader.cpp @@ -56,7 +56,7 @@ ServerConfig::ServerConfig() , NoSnoticeStack(false) { RawLog = HideBans = HideSplits = UndernetMsgPrefix = false; - WildcardIPv6 = InvBypassModes = true; + WildcardIPv6 = true; dns_timeout = 5; MaxTargets = 20; NetBufferSize = 10240; @@ -427,7 +427,6 @@ void ServerConfig::Fill() Paths.Data = ConfValue("path")->getString("datadir", INSPIRCD_DATA_PATH); Paths.Log = ConfValue("path")->getString("logdir", INSPIRCD_LOG_PATH); Paths.Module = ConfValue("path")->getString("moduledir", INSPIRCD_MODULE_PATH); - InvBypassModes = options->getBool("invitebypassmodes", true); NoSnoticeStack = options->getBool("nosnoticestack", false); if (Network.find(' ') != std::string::npos) |
