]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_blockcaps.cpp
Added <oper:swhois> to m_swhois, which will override <type:swhois> if specified
[user/henk/code/inspircd.git] / src / modules / m_blockcaps.cpp
index c23fbe741777011105f9e086a25a3d9022e75f6f..e4f65576050dc52e25b5b794761b461d65169285 100644 (file)
 #include "users.h"
 #include "channels.h"
 #include "modules.h"
-#include "helperfuncs.h"
 #include "inspircd.h"
 #include "mode.h"
 
 /* $ModDesc: Provides support for channel mode +P to block all-CAPS channel messages and notices */
 
-extern InspIRCd* ServerInstance;
 
+/** Handles the +P channel mode
+ */
 class BlockCaps : public ModeHandler
 {
  public:
@@ -56,7 +56,7 @@ class BlockCaps : public ModeHandler
 
 class ModuleBlockCAPS : public Module
 {
-       Server *Srv;
+       
        BlockCaps* bc;
 public:
        
@@ -64,17 +64,12 @@ public:
        {
                
                bc = new BlockCaps(ServerInstance);
-               Srv->AddMode(bc, 'P');
+               ServerInstance->AddMode(bc, 'P');
        }
 
        void Implements(char* List)
        {
-               List[I_On005Numeric] = List[I_OnUserPreMessage] = List[I_OnUserPreNotice] = 1;
-       }
-
-       virtual void On005Numeric(std::string &output)
-       {
-               ServerInstance->ModeGrok->InsertMode(output, "P", 4);
+               List[I_OnUserPreMessage] = List[I_OnUserPreNotice] = 1;
        }
 
        virtual int OnUserPreMessage(userrec* user,void* dest,int target_type, std::string &text, char status)
@@ -100,20 +95,21 @@ public:
                }
                return 0;
        }
-       
+
        virtual int OnUserPreNotice(userrec* user,void* dest,int target_type, std::string &text, char status)
        {
                return OnUserPreMessage(user,dest,target_type,text,status);
        }
-       
+
        virtual ~ModuleBlockCAPS()
        {
+               ServerInstance->Modes->DelMode(bc);
                DELETE(bc);
        }
-       
+
        virtual Version GetVersion()
        {
-               return Version(1,0,0,0,VF_STATIC|VF_VENDOR);
+               return Version(1,1,0,0,VF_COMMON|VF_VENDOR,API_VERSION);
        }
 };