X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;ds=sidebyside;f=include%2Fcommands%2Fcmd_away.h;h=469b07fb3685dfd3323948580f5b6639c9d3bb61;hb=946bff6371d73b50dae6f7011ba0adff852302f0;hp=3f9eddb87803520e69b812bc1538a71855d8ea16;hpb=5b8d2c4cabec5e6bb7aaf359e6cf6af9635c8dab;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/include/commands/cmd_away.h b/include/commands/cmd_away.h index 3f9eddb87..469b07fb3 100644 --- a/include/commands/cmd_away.h +++ b/include/commands/cmd_away.h @@ -22,11 +22,13 @@ #include "users.h" #include "channels.h" +/** Handle /AWAY + */ class cmd_away : public command_t { public: cmd_away (InspIRCd* Instance) : command_t(Instance,"AWAY",0,0) { syntax = "[]"; } - void Handle(const char** parameters, int pcnt, userrec *user); + CmdResult Handle(const char** parameters, int pcnt, userrec *user); }; #endif