aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/m_operjoin.cpp
diff options
context:
space:
mode:
authorGravatar Daniel De Graaf2010-08-05 18:37:30 -0400
committerGravatar Daniel De Graaf2010-08-05 18:37:30 -0400
commitada6992d972efb20e6bde58e03eb0eb111447388 (patch)
tree32e34f7b850e67fde34fb6757688daf517fda389 /src/modules/m_operjoin.cpp
parentForce modules to use init() to register hooks (diff)
Fix up some errors from the init() conversion
Diffstat (limited to 'src/modules/m_operjoin.cpp')
-rw-r--r--src/modules/m_operjoin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_operjoin.cpp b/src/modules/m_operjoin.cpp
index 5f4780318..72abb2893 100644
--- a/src/modules/m_operjoin.cpp
+++ b/src/modules/m_operjoin.cpp
@@ -54,7 +54,7 @@ class ModuleOperjoin : public Module
{
ConfigTag* tag = ServerInstance->Config->ConfValue("operjoin");
- operChan = tag->getString("channel", 0);
+ operChan = tag->getString("channel");
override = tag->getBool("override");
operChans.clear();
if (!operChan.empty())