From: w00t Date: Sat, 12 May 2007 20:43:42 +0000 (+0000) Subject: Opers cannot change the modes of others, and on this module, it's a reeeeeeeeeeeal... X-Git-Tag: v2.0.23~5406 X-Git-Url: https://git.netwichtig.de/gitweb/?a=commitdiff_plain;h=513921effef52ef2820f02a02bbbbc90acba63b1;p=user%2Fhenk%2Fcode%2Finspircd.git Opers cannot change the modes of others, and on this module, it's a reeeeeeeeeeeal bad idea. :p git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6999 e03df62e-2008-0410-955e-edbf42e46eb7 --- diff --git a/src/modules/m_invisible.cpp b/src/modules/m_invisible.cpp index ee6334f5e..9313c65da 100644 --- a/src/modules/m_invisible.cpp +++ b/src/modules/m_invisible.cpp @@ -57,7 +57,7 @@ class InvisibleMode : public ModeHandler ModeAction OnModeChange(userrec* source, userrec* dest, chanrec* channel, std::string ¶meter, bool adding) { - if ((source != dest) && (!*source->oper)) + if (source != dest) return MODEACTION_DENY; if (dest->IsModeSet('Q') != adding)