diff options
author | attilamolnar <attilamolnar@hush.com> | 2012-10-06 21:43:20 +0200 |
---|---|---|
committer | attilamolnar <attilamolnar@hush.com> | 2012-11-12 21:48:42 +0100 |
commit | a4db7bf9af00b32d4f5c1922997d02b0b8be59e5 (patch) | |
tree | 2fd4c4ee2344300285f919968760f27f9ca41df4 /src/modules/m_hidechans.cpp | |
parent | 62149fcd86711d3ca7457a327c4e8fa2e7d85582 (diff) |
Remove usage of the deprecated ConfigReader
Diffstat (limited to 'src/modules/m_hidechans.cpp')
-rw-r--r-- | src/modules/m_hidechans.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/modules/m_hidechans.cpp b/src/modules/m_hidechans.cpp index 9c582551b..023189748 100644 --- a/src/modules/m_hidechans.cpp +++ b/src/modules/m_hidechans.cpp @@ -55,8 +55,7 @@ class ModuleHideChans : public Module virtual void OnRehash(User* user) { - ConfigReader conf; - AffectsOpers = conf.ReadFlag("hidechans", "affectsopers", 0); + AffectsOpers = ServerInstance->Config->ConfValue("hidechans")->getBool("affectsopers"); } ModResult OnWhoisLine(User* user, User* dest, int &numeric, std::string &text) |