diff options
| author | 2012-10-06 21:43:20 +0200 | |
|---|---|---|
| committer | 2012-11-12 21:48:42 +0100 | |
| commit | a4db7bf9af00b32d4f5c1922997d02b0b8be59e5 (patch) | |
| tree | 2fd4c4ee2344300285f919968760f27f9ca41df4 /src/modules/m_channames.cpp | |
| parent | m_operprefix Enhance compatibility with m_hideoper using a ModeWatcher (diff) | |
Remove usage of the deprecated ConfigReader
Diffstat (limited to 'src/modules/m_channames.cpp')
| -rw-r--r-- | src/modules/m_channames.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/m_channames.cpp b/src/modules/m_channames.cpp index 92774edff..49fd7af7b 100644 --- a/src/modules/m_channames.cpp +++ b/src/modules/m_channames.cpp @@ -95,9 +95,9 @@ class ModuleChannelNames : public Module virtual void OnRehash(User* user) { - ConfigReader Conf; - std::string denyToken = Conf.ReadValue("channames", "denyrange", 0); - std::string allowToken = Conf.ReadValue("channames", "allowrange", 0); + ConfigTag* tag = ServerInstance->Config->ConfValue("channames"); + std::string denyToken = tag->getString("denyrange"); + std::string allowToken = tag->getString("allowrange"); allowedmap.set(); irc::portparser denyrange(denyToken, false); |
