diff options
Diffstat (limited to 'src/cmd_wallops.cpp')
-rw-r--r-- | src/cmd_wallops.cpp | 33 |
1 files changed, 1 insertions, 32 deletions
diff --git a/src/cmd_wallops.cpp b/src/cmd_wallops.cpp index 077ead78e..bad638815 100644 --- a/src/cmd_wallops.cpp +++ b/src/cmd_wallops.cpp @@ -14,39 +14,10 @@ * --------------------------------------------------- */ -using namespace std; - -#include "inspircd_config.h" -#include "inspircd.h" -#include "inspircd_io.h" -#include <time.h> -#include <string> -#ifdef GCC3 -#include <ext/hash_map> -#else -#include <hash_map> -#endif -#include <map> -#include <sstream> -#include <vector> -#include <deque> -#include "users.h" -#include "ctables.h" -#include "globals.h" +#include "configreader.h" #include "modules.h" -#include "dynamic.h" -#include "wildcard.h" -#include "message.h" #include "commands.h" -#include "mode.h" -#include "xline.h" -#include "inspstring.h" -#include "dnsqueue.h" #include "helperfuncs.h" -#include "hashcomp.h" -#include "socketengine.h" -#include "typedefs.h" -#include "command_parse.h" #include "cmd_wallops.h" extern int MODCOUNT; @@ -59,5 +30,3 @@ void cmd_wallops::Handle (char **parameters, int pcnt, userrec *user) WriteWallOps(user,false,"%s",parameters[0]); FOREACH_MOD(I_OnWallops,OnWallops(user,parameters[0])); } - - |