]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_sethost.cpp
Speaking of forgetting things, someone forgot to change the name of the function
[user/henk/code/inspircd.git] / src / modules / m_sethost.cpp
index 94e811d798511cd718e54092ae9feac2a962aa63..b7496a4ba1f122fa5c53b92a42ce8841ae80c377 100644 (file)
@@ -21,16 +21,18 @@ using namespace std;
 #include "users.h"
 #include "channels.h"
 #include "modules.h"
-#include "helperfuncs.h"
+
+#include "inspircd.h"
 
 /* $ModDesc: Provides support for the SETHOST command */
 
-static Server *Srv;
+
+
 
 class cmd_sethost : public command_t
 {
  public:
      cmd_sethost() : command_t("SETHOST",'o',1)
cmd_sethost (InspIRCd* Instance) : command_t(Instance,"SETHOST",'o',1)
        {
                this->source = "m_sethost.so";
                syntax = "<new-hostname>";
@@ -54,8 +56,8 @@ class cmd_sethost : public command_t
                                }
                        }
                }
-               Srv->ChangeHost(user,parameters[0]);
-               Srv->SendOpers(std::string(user->nick)+" used SETHOST to change their displayed host to "+std::string(parameters[0]));
+               if (user->ChangeDisplayedHost(parameters[0]))
+                       ServerInstance->WriteOpers(std::string(user->nick)+" used SETHOST to change their displayed host to "+std::string(parameters[0]));
        }
 };
 
@@ -64,12 +66,12 @@ class ModuleSetHost : public Module
 {
        cmd_sethost*    mycommand;
  public:
-       ModuleSetHost(Server* Me)
+       ModuleSetHost(InspIRCd* Me)
                : Module::Module(Me)
        {
-               Srv = Me;
-               mycommand = new cmd_sethost();
-               Srv->AddCommand(mycommand);
+               
+               mycommand = new cmd_sethost(ServerInstance);
+               ServerInstance->AddCommand(mycommand);
        }
        
        virtual ~ModuleSetHost()
@@ -96,7 +98,7 @@ class ModuleSetHostFactory : public ModuleFactory
        {
        }
        
-       virtual Module * CreateModule(Server* Me)
+       virtual Module * CreateModule(InspIRCd* Me)
        {
                return new ModuleSetHost(Me);
        }