]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_chghost.cpp
Change to Duration for second param
[user/henk/code/inspircd.git] / src / modules / m_chghost.cpp
index fdec5d6d0cb0d1ce292898f0b253a51156c03427..6884fd35a6655e2c5b6aeb1a0d63622d69e03524 100644 (file)
@@ -24,13 +24,14 @@ class CommandChghost : public Command
  public:
        CommandChghost(Module* Creator, char* hmap) : Command(Creator,"CHGHOST", 2), hostmap(hmap)
        {
-               flags_needed = 'o'; syntax = "<nick> <newhost>";
+               flags_needed = 'o';
+               syntax = "<nick> <newhost>";
                TRANSLATE3(TR_NICK, TR_TEXT, TR_END);
        }
 
        CmdResult Handle(const std::vector<std::string> &parameters, User *user)
        {
-               const char * x = parameters[1].c_str();
+               const char* x = parameters[1].c_str();
 
                for (; *x; x++)
                {
@@ -40,11 +41,6 @@ class CommandChghost : public Command
                                return CMD_FAILURE;
                        }
                }
-               if (parameters[1].empty())
-               {
-                       user->WriteServ("NOTICE %s :*** CHGHOST: Host must be specified", user->nick.c_str());
-                       return CMD_FAILURE;
-               }
 
                if ((parameters[1].c_str() - x) > 63)
                {
@@ -114,7 +110,7 @@ class ModuleChgHost : public Module
 
        Version GetVersion()
        {
-               return Version("Provides support for the CHGHOST command", VF_OPTCOMMON | VF_VENDOR, API_VERSION);
+               return Version("Provides support for the CHGHOST command", VF_OPTCOMMON | VF_VENDOR);
        }
 
 };