]> git.netwichtig.de Git - user/henk/code/inspircd.git/commitdiff
m_override is now fixed, replaced AC_GENERAL_MODE OnAccessCheck event
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>
Sat, 9 Sep 2006 13:46:58 +0000 (13:46 +0000)
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>
Sat, 9 Sep 2006 13:46:58 +0000 (13:46 +0000)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5180 e03df62e-2008-0410-955e-edbf42e46eb7

src/mode.cpp

index 3bdcb1a300cd49448434a240531d8ee09061c883..290933ab64bd9566f47d9321ac00cf9a14c473c2 100644 (file)
@@ -312,15 +312,23 @@ void ModeParser::Process(const char** parameters, int pcnt, userrec *user, bool
                                /* We don't have halfop */
                                ServerInstance->Log(DEBUG,"The user is not a halfop or above, checking other reasons for being able to set the modes");
 
-                               /* Are we a uline or is it a servermode? */
-                               if ((!ServerInstance->ULine(user->server)) && (!servermode))
-                               {
-                                       /* Not enough permission:
-                                        * NOT a uline and NOT a servermode,
-                                        * OR, NOT halfop or above.
-                                        */
-                                       user->WriteServ("482 %s %s :You're not a channel (half)operator",user->nick, targetchannel->name);
+                               int MOD_RESULT = 0;
+                               FOREACH_RESULT(I_OnAccessCheck,OnAccessCheck(user, NULL, targetchannel, AC_GENERAL_MODE));
+                               if (MOD_RESULT == ACR_DENY)
                                        return;
+
+                               if (MOD_RESULT == ACR_DEFAULT)
+                               {
+                                       /* Are we a uline or is it a servermode? */
+                                       if ((!ServerInstance->ULine(user->server)) && (!servermode))
+                                       {
+                                               /* Not enough permission:
+                                                * NOT a uline and NOT a servermode,
+                                                * OR, NOT halfop or above.
+                                                */
+                                               user->WriteServ("482 %s %s :You're not a channel (half)operator",user->nick, targetchannel->name);
+                                               return;
+                                       }
                                }
                        }
                }