summaryrefslogtreecommitdiff
path: root/src/modules/m_ircv3.cpp
diff options
context:
space:
mode:
authorattilamolnar <attilamolnar@hush.com>2013-08-27 18:30:59 +0200
committerattilamolnar <attilamolnar@hush.com>2013-08-27 18:30:59 +0200
commit00cd97160ae8909ca12b8807a8114cad1f6a06b1 (patch)
treedf9a24b8e59061510df6e4f30f317771b8dba20a /src/modules/m_ircv3.cpp
parentd3b6538f955e824d46141f64fc081ce19fc081ef (diff)
Update example configs, README.md and more
- Fix typos, remove misleading information, rephrase a few sentences - Add info about hmac-<hash> hash types - Remove <performance:maxwho> (the code which used this was removed in 96e4434 - @SaberUK) - Change inspircd.github.org to inspircd.org
Diffstat (limited to 'src/modules/m_ircv3.cpp')
-rw-r--r--src/modules/m_ircv3.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_ircv3.cpp b/src/modules/m_ircv3.cpp
index b0e020c63..da42d823d 100644
--- a/src/modules/m_ircv3.cpp
+++ b/src/modules/m_ircv3.cpp
@@ -88,7 +88,7 @@ class ModuleIRCv3 : public Module
void OnRehash(User* user)
{
ConfigTag* conf = ServerInstance->Config->ConfValue("ircv3");
- accountnotify = conf->getBool("accoutnotify", true);
+ accountnotify = conf->getBool("accountnotify", conf->getBool("accoutnotify", true));
awaynotify = conf->getBool("awaynotify", true);
extendedjoin = conf->getBool("extendedjoin", true);
}