]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/coremods/core_channel/cmd_join.cpp
Make the build reproducible by removing time related macros.
[user/henk/code/inspircd.git] / src / coremods / core_channel / cmd_join.cpp
index 1e6e515bab75c1c12da7c2cc87c0d7cc6562a2f4..06e203ead68a11b3b2a1c282050d82097a9194c4 100644 (file)
 
 
 #include "inspircd.h"
+#include "core_channel.h"
 
-/** Handle /JOIN.
- */
-class CommandJoin : public SplitCommand
+CommandJoin::CommandJoin(Module* parent)
+       : SplitCommand(parent, "JOIN", 1, 2)
 {
- public:
-       /** Constructor for join.
-        */
-       CommandJoin(Module* parent)
-               : SplitCommand(parent, "JOIN", 1, 2)
-       {
-               syntax = "<channel>{,<channel>} {<key>{,<key>}}";
-               Penalty = 2;
-       }
-
-       /** Handle command.
-        * @param parameters The parameters to the command
-        * @param user The user issuing the command
-        * @return A value from CmdResult to indicate command success or failure.
-        */
-       CmdResult HandleLocal(const std::vector<std::string>& parameters, LocalUser* user);
-};
+       syntax = "<channel>{,<channel>} {<key>{,<key>}}";
+       Penalty = 2;
+}
 
 /** Handle /JOIN
  */
@@ -69,8 +55,6 @@ CmdResult CommandJoin::HandleLocal(const std::vector<std::string>& parameters, L
                }
        }
 
-       user->WriteNumeric(ERR_NOSUCHCHANNEL, "%s :Invalid channel name", parameters[0].c_str());
+       user->WriteNumeric(ERR_NOSUCHCHANNEL, parameters[0], "Invalid channel name");
        return CMD_FAILURE;
 }
-
-COMMAND_INIT(CommandJoin)