X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;ds=sidebyside;f=include%2Fcommands%2Fcmd_motd.h;h=310627ab121bdabd9c0d3f99d13cce5d94f0768a;hb=d54fd9b1e6b31f69332a9241b5f17330c0ad61e0;hp=ca065f97e8e8c6ca168c48f69ad63c8b53cd9f43;hpb=0757a4a495daabf661ac3b7ab79f0a5ee423abe8;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/include/commands/cmd_motd.h b/include/commands/cmd_motd.h index ca065f97e..310627ab1 100644 --- a/include/commands/cmd_motd.h +++ b/include/commands/cmd_motd.h @@ -19,19 +19,16 @@ // include the common header files -#include -#include #include -#include -#include #include +#include "inspircd.h" #include "users.h" #include "channels.h" class cmd_motd : public command_t { public: - cmd_motd () : command_t("MOTD",0,0) { } + cmd_motd (InspIRCd* Instance) : command_t(Instance,"MOTD",0,0) { syntax = "[]"; } void Handle(const char** parameters, int pcnt, userrec *user); };