]> 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 a5a2ae5ff358bc20989ff2e133a78511ff8e4db2..e4f65576050dc52e25b5b794761b461d65169285 100644 (file)
 #include "users.h"
 #include "channels.h"
 #include "modules.h"
-
 #include "inspircd.h"
 #include "mode.h"
 
 /* $ModDesc: Provides support for channel mode +P to block all-CAPS channel messages and notices */
 
 
-
+/** Handles the +P channel mode
+ */
 class BlockCaps : public ModeHandler
 {
  public:
@@ -69,11 +69,7 @@ public:
 
        void Implements(char* List)
        {
-               List[I_On005Numeric] = List[I_OnUserPreMessage] = List[I_OnUserPreNotice] = 1;
-       }
-
-       virtual void On005Numeric(std::string &output)
-       {
+               List[I_OnUserPreMessage] = List[I_OnUserPreNotice] = 1;
        }
 
        virtual int OnUserPreMessage(userrec* user,void* dest,int target_type, std::string &text, char status)
@@ -99,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);
        }
 };