diff options
author | Attila Molnar <attilamolnar@hush.com> | 2015-11-02 12:38:14 +0100 |
---|---|---|
committer | Attila Molnar <attilamolnar@hush.com> | 2015-11-02 12:38:14 +0100 |
commit | a6b53dbc3629eb329b5b77d81e81ced837d4dc66 (patch) | |
tree | a05b140a7e7713650baa8fd2a6b1f5a29c403f70 /src/coremods | |
parent | a95853c96493bbf8609febfc4395a21ff0b711d5 (diff) |
Move ServerConfig::InvBypassModes into core_channel
Diffstat (limited to 'src/coremods')
-rw-r--r-- | src/coremods/core_channel/core_channel.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/coremods/core_channel/core_channel.cpp b/src/coremods/core_channel/core_channel.cpp index ec617af13..9febdf1e7 100644 --- a/src/coremods/core_channel/core_channel.cpp +++ b/src/coremods/core_channel/core_channel.cpp @@ -44,8 +44,9 @@ class CoreModChannel : public Module void ReadConfig(ConfigStatus& status) CXX11_OVERRIDE { + ConfigTag* optionstag = ServerInstance->Config->ConfValue("options"); Implementation events[] = { I_OnCheckKey, I_OnCheckLimit, I_OnCheckChannelBan }; - if (ServerInstance->Config->InvBypassModes) + if (optionstag->getBool("invitebypassmodes", true)) ServerInstance->Modules.Attach(events, this, sizeof(events)/sizeof(Implementation)); else { |