X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fcmd_join.cpp;h=17b14fdff4aa42056d9374564c388ef1cc6c867f;hb=db07867e945deb72ce103f796e20104a27c5f68a;hp=159e383907fd81e1e82187ebb56c6d46c273197c;hpb=6b43da7511ca875b64e58b84f72dd89485c0e7fd;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/cmd_join.cpp b/src/cmd_join.cpp index 159e38390..17b14fdff 100644 --- a/src/cmd_join.cpp +++ b/src/cmd_join.cpp @@ -14,33 +14,11 @@ * --------------------------------------------------- */ -using namespace std; - -#include "inspircd_config.h" #include "inspircd.h" -#include "inspircd_io.h" -#include -#include -#ifdef GCC3 -#include -#else -#include -#endif -#include -#include -#include -#include #include "users.h" -#include "ctables.h" -#include "globals.h" -#include "message.h" #include "commands.h" -#include "inspstring.h" #include "helperfuncs.h" -#include "hashcomp.h" -#include "typedefs.h" -#include "command_parse.h" -#include "cmd_join.h" +#include "commands/cmd_join.h" extern InspIRCd* ServerInstance; @@ -58,6 +36,3 @@ void cmd_join::Handle (char **parameters, int pcnt, userrec *user) WriteServ(user->fd,"403 %s %s :Invalid channel name",user->nick, parameters[0]); } } - - -