X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fcmd_away.cpp;h=f882904c20a3d92cbd287b3758cc824ad7ecde87;hb=6dfc98470938a932ddee0100f515658dffe94438;hp=b68dcdedad5306ad1dfadd5ef2caca98a561e8d9;hpb=1383dba43e463f292aea094d01f62f355946049d;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/cmd_away.cpp b/src/cmd_away.cpp index b68dcdeda..f882904c2 100644 --- a/src/cmd_away.cpp +++ b/src/cmd_away.cpp @@ -14,31 +14,21 @@ * --------------------------------------------------- */ -using namespace std; - -#include "inspircd_config.h" -#include "inspircd.h" -#include "inspircd_io.h" -#include -#include -#include #include -#include +#include "inspircd_config.h" +#include "configreader.h" #include "users.h" -#include "ctables.h" -#include "globals.h" #include "modules.h" -#include "message.h" #include "commands.h" -#include "inspstring.h" -#include "dnsqueue.h" #include "helperfuncs.h" -#include "hashcomp.h" -#include "typedefs.h" -#include "cmd_away.h" +#include "commands/cmd_away.h" extern ServerConfig* Config; extern InspIRCd* ServerInstance; +extern int MODCOUNT; +extern std::vector modules; +extern std::vector factory; + void cmd_away::Handle (char **parameters, int pcnt, userrec *user) { @@ -46,12 +36,12 @@ void cmd_away::Handle (char **parameters, int pcnt, userrec *user) { strlcpy(user->awaymsg,parameters[0],MAXAWAY); WriteServ(user->fd,"306 %s :You have been marked as being away",user->nick); + FOREACH_MOD(I_OnSetAway,OnSetAway(user)); } else { *user->awaymsg = 0; WriteServ(user->fd,"305 %s :You are no longer marked as being away",user->nick); + FOREACH_MOD(I_OnCancelAway,OnCancelAway(user)); } } - -