diff options
-rw-r--r-- | modules/pseudoclients/chanserv.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/pseudoclients/chanserv.cpp b/modules/pseudoclients/chanserv.cpp index 41f62525c..1f0653874 100644 --- a/modules/pseudoclients/chanserv.cpp +++ b/modules/pseudoclients/chanserv.cpp @@ -261,7 +261,7 @@ class ChanServCore : public Module, public ChanServService { if (c->ci) c->SetMode(c->ci->WhoSends(), "REGISTERED", "", false); - const Anope::string &require = Config->GetModule(this)->Get<const Anope::string>("require", "r"); + const Anope::string &require = Config->GetModule(this)->Get<const Anope::string>("require"); if (!require.empty()) { if (c->ci) @@ -281,7 +281,7 @@ class ChanServCore : public Module, public ChanServService EventReturn OnCanSet(User *u, const ChannelMode *cm) anope_override { if (Config->GetModule(this)->Get<const Anope::string>("nomlock").find(cm->mchar) != Anope::string::npos - || Config->GetModule(this)->Get<const Anope::string>("require", "r").find(cm->mchar) != Anope::string::npos) + || Config->GetModule(this)->Get<const Anope::string>("require").find(cm->mchar) != Anope::string::npos) return EVENT_STOP; return EVENT_CONTINUE; } |