]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_opermotd.cpp
Remove m_halfop from list in compat linking mode
[user/henk/code/inspircd.git] / src / modules / m_opermotd.cpp
index 6eb3a054021a00df798aa6d782206e0a1d82e9a2..a4956f05f35f0cd1d556a0f52352bdee70d14294 100644 (file)
@@ -43,9 +43,9 @@ CmdResult ShowOperMOTD(User* user)
 class CommandOpermotd : public Command
 {
  public:
-       CommandOpermotd (InspIRCd* Instance, Module* Creator) : Command(Instance, Creator,"OPERMOTD", "o", 0)
+       CommandOpermotd(Module* Creator) : Command(Creator,"OPERMOTD", 0)
        {
-               syntax = "[<servername>]";
+               flags_needed = 'o'; syntax = "[<servername>]";
        }
 
        CmdResult Handle (const std::vector<std::string>& parameters, User* user)
@@ -63,25 +63,20 @@ class ModuleOpermotd : public Module
 
        void LoadOperMOTD()
        {
-               ConfigReader* conf = new ConfigReader(ServerInstance);
+               ConfigReader conf;
                std::string filename;
-               filename = conf->ReadValue("opermotd","file",0);
-               if (opermotd)
-               {
-                       delete opermotd;
-                       opermotd = NULL;
-               }
-               opermotd = new FileReader(ServerInstance, filename);
-               onoper = conf->ReadFlag("opermotd","onoper","yes",0);
-               delete conf;
+               filename = conf.ReadValue("opermotd","file",0);
+               delete opermotd;
+               opermotd = new FileReader(filename);
+               onoper = conf.ReadFlag("opermotd","onoper","yes",0);
        }
 
-       ModuleOpermotd(InspIRCd* Me)
-               : Module(Me), cmd(Me, this)
+       ModuleOpermotd()
+               : cmd(this)
        {
                opermotd = NULL;
                ServerInstance->AddCommand(&cmd);
-               opermotd = new FileReader(ServerInstance);
+               opermotd = new FileReader;
                LoadOperMOTD();
                Implementation eventlist[] = { I_OnRehash, I_OnOper };
                ServerInstance->Modules->Attach(eventlist, this, 2);
@@ -93,7 +88,7 @@ class ModuleOpermotd : public Module
 
        virtual Version GetVersion()
        {
-               return Version("$Id$", VF_VENDOR, API_VERSION);
+               return Version("Shows a message to opers after oper-up, adds /opermotd", VF_VENDOR);
        }