X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fcommands%2Fcmd_ison.cpp;h=227f1b3edebb10d06b94ecedec271e6f8f00b5d6;hb=bb3aa2fb37071f48a5312df8688c0a6990644fbb;hp=784328eb59d5b8d7ebd7ad1fd359d00a8e100512;hpb=7998173bcebb06e5e43e3337cc029eba3389199f;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/commands/cmd_ison.cpp b/src/commands/cmd_ison.cpp index 784328eb5..227f1b3ed 100644 --- a/src/commands/cmd_ison.cpp +++ b/src/commands/cmd_ison.cpp @@ -30,7 +30,9 @@ class CommandIson : public Command public: /** Constructor for ison. */ - CommandIson ( Module* parent) : Command(parent,"ISON",0,0) { syntax = " {nick}"; } + CommandIson ( Module* parent) : Command(parent,"ISON", 1) { + syntax = " {nick}"; + } /** Handle command. * @param parameters The parameters to the comamnd * @param pcnt The number of parameters passed to teh command @@ -46,7 +48,7 @@ CmdResult CommandIson::Handle (const std::vector& parameters, User { std::map ison_already; User *u; - std::string reply = std::string("303 ") + user->nick + " :"; + std::string reply = "303 " + user->nick + " :"; for (unsigned int i = 0; i < parameters.size(); i++) { @@ -60,7 +62,7 @@ CmdResult CommandIson::Handle (const std::vector& parameters, User if (reply.length() > 450) { user->WriteServ(reply); - reply = std::string("303 ") + user->nick + " :"; + reply = "303 " + user->nick + " :"; } ison_already[u] = u; } @@ -85,7 +87,7 @@ CmdResult CommandIson::Handle (const std::vector& parameters, User if (reply.length() > 450) { user->WriteServ(reply); - reply = std::string("303 ") + user->nick + " :"; + reply = "303 " + user->nick + " :"; } ison_already[u] = u; }