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_shun.cpp | |
parent | 62149fcd86711d3ca7457a327c4e8fa2e7d85582 (diff) |
Remove usage of the deprecated ConfigReader
Diffstat (limited to 'src/modules/m_shun.cpp')
-rw-r--r-- | src/modules/m_shun.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/modules/m_shun.cpp b/src/modules/m_shun.cpp index 7e84b8fda..096d2f9ee 100644 --- a/src/modules/m_shun.cpp +++ b/src/modules/m_shun.cpp @@ -214,8 +214,8 @@ class ModuleShun : public Module virtual void OnRehash(User* user) { - ConfigReader MyConf; - std::string cmds = MyConf.ReadValue("shun", "enabledcommands", 0); + ConfigTag* tag = ServerInstance->Config->ConfValue("shun"); + std::string cmds = tag->getString("enabledcommands"); std::transform(cmds.begin(), cmds.end(), cmds.begin(), ::toupper); if (cmds.empty()) @@ -231,8 +231,8 @@ class ModuleShun : public Module ShunEnabledCommands.insert(thiscmd); } - NotifyOfShun = MyConf.ReadFlag("shun", "notifyuser", "yes", 0); - affectopers = MyConf.ReadFlag("shun", "affectopers", "no", 0); + NotifyOfShun = tag->getBool("notifyuser", true); + affectopers = tag->getBool("affectopers", false); } virtual ModResult OnPreCommand(std::string &command, std::vector<std::string>& parameters, LocalUser* user, bool validated, const std::string &original_line) |