]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_sethost.cpp
Fix access checks on chanprotect preventing use of SAMODE
[user/henk/code/inspircd.git] / src / modules / m_sethost.cpp
index 8442167cfb9c4ba6c785c56fca1d3f3f25a9a5ce..af9443efdab78eee0b45971cebbbfe5aab06d895 100644 (file)
@@ -22,9 +22,9 @@ class CommandSethost : public Command
  private:
        char* hostmap;
  public:
-       CommandSethost (InspIRCd* Instance, Module* Creator, char* hmap) : Command(Instance,Creator,"SETHOST","o",1), hostmap(hmap)
+       CommandSethost(Module* Creator, char* hmap) : Command(Creator,"SETHOST", 1), hostmap(hmap)
        {
-               syntax = "<new-hostname>";
+               flags_needed = 'o'; syntax = "<new-hostname>";
                TRANSLATE2(TR_TEXT, TR_END);
        }
 
@@ -53,7 +53,7 @@ class CommandSethost : public Command
                if (user->ChangeDisplayedHost(parameters[0].c_str()))
                {
                        ServerInstance->SNO->WriteGlobalSno('a', std::string(user->nick)+" used SETHOST to change their displayed host to "+user->dhost);
-                       return CMD_LOCALONLY;
+                       return CMD_SUCCESS;
                }
 
                return CMD_FAILURE;
@@ -67,7 +67,7 @@ class ModuleSetHost : public Module
        char hostmap[256];
  public:
        ModuleSetHost(InspIRCd* Me)
-               : Module(Me), cmd(Me, this, hostmap)
+               : Module(Me), cmd(this, hostmap)
        {
                OnRehash(NULL);
                ServerInstance->AddCommand(&cmd);