X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=include%2Fcommands%2Fcmd_connect.h;h=203fbe9c0d7b9fed21725fee4540488ce0bce20f;hb=5b8d2c4cabec5e6bb7aaf359e6cf6af9635c8dab;hp=40fd8b752238b87d2372bf9c28d4a2f0913a2910;hpb=dc8f5d02f77aeabefaefe88005b99c8b47030ab7;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/include/commands/cmd_connect.h b/include/commands/cmd_connect.h index 40fd8b752..203fbe9c0 100644 --- a/include/commands/cmd_connect.h +++ b/include/commands/cmd_connect.h @@ -20,11 +20,12 @@ #include "users.h" #include "channels.h" #include "ctables.h" +#include "modules.h" class cmd_connect : public command_t { public: - cmd_connect () : command_t("CONNECT",'o',1) { syntax = " []"; } + cmd_connect (InspIRCd* Instance) : command_t(Instance,"CONNECT",'o',1) { syntax = " []"; } void Handle(const char** parameters, int pcnt, userrec *user); };