]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_spy.cpp
Make VF_OPTCOMMON module mismatches a fatal link error by default
[user/henk/code/inspircd.git] / src / modules / m_spy.cpp
index 54d2983b063ab7e106b0ce2fe0cd69f63b864471..297112f62e73b49704421c28b2cfecfd1057bea1 100644 (file)
@@ -2,8 +2,8 @@
  *       | Inspire Internet Relay Chat Daemon |
  *       +------------------------------------+
  *
- *  InspIRCd: (C) 2002-2008 InspIRCd Development Team
- * See: http://www.inspircd.org/wiki/index.php/Credits
+ *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
+ * See: http://wiki.inspircd.org/Credits
  *
  * This program is free but copyrighted software; see
  *         the file COPYING for details.
@@ -25,8 +25,8 @@ class ModuleSpy : public Module
 
        virtual int OnUserList(User* user, Channel* Ptr, CUList* &nameslist)
        {
-               /* User is an oper and is NOT on the channel */
-               if (IS_OPER(user) && !Ptr->HasUser(user))
+               /* User has priv and is NOT on the channel */
+               if (user->HasPrivPermission("channels/auspex") && !Ptr->HasUser(user))
                        return -1;
 
                return 0;
@@ -36,7 +36,7 @@ class ModuleSpy : public Module
        {
                /* To ensure that we get priority over namesx and delayjoin for names list generation */
                Module* list[] = { ServerInstance->Modules->Find("m_namesx.so"), ServerInstance->Modules->Find("m_delayjoin.so") };
-               ServerInstance->Modules->SetPriority(this, I_OnUserList, PRIO_BEFORE, list, 2);
+               ServerInstance->Modules->SetPriority(this, I_OnUserList, PRIORITY_BEFORE, list, 2);
        }
 
        virtual ~ModuleSpy()