diff options
author | Adam <Adam@anope.org> | 2014-01-21 17:33:57 -0500 |
---|---|---|
committer | Adam <Adam@anope.org> | 2014-01-21 17:33:57 -0500 |
commit | 1027ec667a84b918f21b57fc4842bf6bb818105e (patch) | |
tree | fc8f137c2f5cc1bc471f7b9c104a4c7d0eecac2c /modules/extra/stats/m_chanstats.cpp | |
parent | 4d9273efa42a16380de8ac81c615eaac89052f68 (diff) |
Made the chanstats confs try and look similar to every other configuration file
Diffstat (limited to 'modules/extra/stats/m_chanstats.cpp')
-rw-r--r-- | modules/extra/stats/m_chanstats.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/extra/stats/m_chanstats.cpp b/modules/extra/stats/m_chanstats.cpp index 1ca670368..4151c4579 100644 --- a/modules/extra/stats/m_chanstats.cpp +++ b/modules/extra/stats/m_chanstats.cpp @@ -491,8 +491,8 @@ class MChanstats : public Module SmileysHappy = block->Get<const Anope::string>("SmileysHappy"); SmileysSad = block->Get<const Anope::string>("SmileysSad"); SmileysOther = block->Get<const Anope::string>("SmileysOther"); - NSDefChanstats = block->Get<bool>("NSDefChanstats", "no"); - CSDefChanstats = block->Get<bool>("CSDefChanstats", "no"); + NSDefChanstats = block->Get<bool>("ns_def_chanstats"); + CSDefChanstats = block->Get<bool>("cs_def_chanstats"); Anope::string engine = block->Get<const Anope::string>("engine"); this->sql = ServiceReference<SQL::Provider>("SQL::Provider", engine); if (sql) |