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_passforward.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_passforward.cpp')
| -rw-r--r-- | src/modules/m_passforward.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/modules/m_passforward.cpp b/src/modules/m_passforward.cpp index fb7bae234..047992d12 100644 --- a/src/modules/m_passforward.cpp +++ b/src/modules/m_passforward.cpp @@ -41,10 +41,10 @@ class ModulePassForward : public Module void OnRehash(User* user) { - ConfigReader Conf; - nickrequired = Conf.ReadValue("passforward", "nick", "NickServ", 0); - forwardmsg = Conf.ReadValue("passforward", "forwardmsg", "NOTICE $nick :*** Forwarding PASS to $nickrequired", 0); - forwardcmd = Conf.ReadValue("passforward", "cmd", "PRIVMSG $nickrequired :IDENTIFY $pass", 0); + ConfigTag* tag = ServerInstance->Config->ConfValue("passforward"); + nickrequired = tag->getString("nick", "NickServ"); + forwardmsg = tag->getString("forwardmsg", "NOTICE $nick :*** Forwarding PASS to $nickrequired"); + forwardcmd = tag->getString("cmd", "PRIVMSG $nickrequired :IDENTIFY $pass"); } void FormatStr(std::string& result, const std::string& format, const LocalUser* user) |
