]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_hideoper.cpp
Clarify handshake failure messages
[user/henk/code/inspircd.git] / src / modules / m_hideoper.cpp
index 757f2d9af0083e0cbf66d1ed9dffcac616848505..80fee268fc85907fb9685a6e4328f2ccc8ab1256 100644 (file)
 class HideOper : public ModeHandler
 {
  public:
-       HideOper(InspIRCd* Instance, Module* Creator) : ModeHandler(Instance, Creator, 'H', 0, 0, false, MODETYPE_USER, true) { }
+       HideOper(Module* Creator) : ModeHandler(Creator, "hideoper", 'H', PARAM_NONE, MODETYPE_USER)
+       {
+               oper = true;
+       }
 
        ModeAction OnModeChange(User* source, User* dest, Channel* channel, std::string &parameter, bool adding)
        {
@@ -49,25 +52,23 @@ class ModuleHideOper : public Module
 {
        HideOper hm;
  public:
-       ModuleHideOper(InspIRCd* Me)
-               : Module(Me), hm(Me, this)
+       ModuleHideOper()
+               : hm(this)
        {
-
                if (!ServerInstance->Modes->AddMode(&hm))
                        throw ModuleException("Could not add new modes!");
-               Implementation eventlist[] = { I_OnWhoisLine };
-               ServerInstance->Modules->Attach(eventlist, this, 1);
+               Implementation eventlist[] = { I_OnWhoisLine, I_OnSendWhoLine };
+               ServerInstance->Modules->Attach(eventlist, this, 2);
        }
 
 
        virtual ~ModuleHideOper()
        {
-               ServerInstance->Modes->DelMode(&hm);
        }
 
        virtual Version GetVersion()
        {
-               return Version("$Id$", VF_COMMON | VF_VENDOR, API_VERSION);
+               return Version("Provides support for hiding oper status with user mode +H", VF_COMMON | VF_VENDOR);
        }
 
        ModResult OnWhoisLine(User* user, User* dest, int &numeric, std::string &text)