diff options
author | Adam <Adam@anope.org> | 2015-01-10 15:17:16 -0500 |
---|---|---|
committer | Adam <Adam@anope.org> | 2015-01-10 15:19:40 -0500 |
commit | 32007f81cf0bb475f3621d7637666b06ffa482b9 (patch) | |
tree | 10d225b06dab05bcb6553e9ee51a97ab4c804f9c /src/config.cpp | |
parent | 609f87d39fd0d0eeea28aefceca1702e692f2554 (diff) |
Add networkinfo:nick_chars option to allow configuring additional characters allowed in nicknames
Diffstat (limited to 'src/config.cpp')
-rw-r--r-- | src/config.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/config.cpp b/src/config.cpp index 3ce4251e7..18a6c5d39 100644 --- a/src/config.cpp +++ b/src/config.cpp @@ -191,6 +191,7 @@ Conf::Conf() : Block("") } this->DefLanguage = options->Get<const Anope::string>("defaultlanguage"); this->TimeoutCheck = options->Get<time_t>("timeoutcheck"); + this->NickChars = networkinfo->Get<Anope::string>("nick_chars"); for (int i = 0; i < this->CountBlock("uplink"); ++i) { |