From a4db7bf9af00b32d4f5c1922997d02b0b8be59e5 Mon Sep 17 00:00:00 2001 From: attilamolnar Date: Sat, 6 Oct 2012 21:43:20 +0200 Subject: Remove usage of the deprecated ConfigReader --- src/modules/m_showwhois.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'src/modules/m_showwhois.cpp') diff --git a/src/modules/m_showwhois.cpp b/src/modules/m_showwhois.cpp index d81dd553d..3b2ea7de9 100644 --- a/src/modules/m_showwhois.cpp +++ b/src/modules/m_showwhois.cpp @@ -76,9 +76,10 @@ class ModuleShowwhois : public Module ModuleShowwhois() : cmd(this) { - ConfigReader conf; - bool OpersOnly = conf.ReadFlag("showwhois", "opersonly", "yes", 0); - ShowWhoisFromOpers = conf.ReadFlag("showwhois", "showfromopers", "yes", 0); + ConfigTag* tag = ServerInstance->Config->ConfValue("showwhois"); + + bool OpersOnly = tag->getBool("opersonly", true); + ShowWhoisFromOpers = tag->getBool("showfromopers", true); sw = new SeeWhois(this, OpersOnly); if (!ServerInstance->Modes->AddMode(sw)) -- cgit v1.3.1-10-gc9f91