From 9384a4f0880ef3ecbf7718256dd25e50f818b905 Mon Sep 17 00:00:00 2001 From: Adam Date: Fri, 10 May 2013 11:22:53 -0400 Subject: [PATCH] Fix ChannelMode::CanSet --- modules/pseudoclients/chanserv.cpp | 2 +- src/modes.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/pseudoclients/chanserv.cpp b/modules/pseudoclients/chanserv.cpp index 9dc5abf0c..db5e16146 100644 --- a/modules/pseudoclients/chanserv.cpp +++ b/modules/pseudoclients/chanserv.cpp @@ -344,7 +344,7 @@ class ChanServCore : public Module EventReturn OnCanSet(User *u, const ChannelMode *cm) anope_override { if (Config->GetModule(this)->Get("nomlock").find(cm->mchar) != Anope::string::npos - || Config->GetModule(this)->Get("require", "r").find(cm->mchar) || Anope::string::npos) + || Config->GetModule(this)->Get("require", "r").find(cm->mchar) != Anope::string::npos) return EVENT_STOP; return EVENT_CONTINUE; } diff --git a/src/modes.cpp b/src/modes.cpp index 1238df17d..651fbafd9 100644 --- a/src/modes.cpp +++ b/src/modes.cpp @@ -120,7 +120,7 @@ bool ChannelMode::CanSet(User *u) const { EventReturn MOD_RESULT; FOREACH_RESULT(I_OnCanSet, OnCanSet(u, this)); - return MOD_RESULT == EVENT_ALLOW; + return MOD_RESULT != EVENT_STOP; } ChannelModeList::ChannelModeList(const Anope::string &cm, char mch) : ChannelMode(cm, mch)