diff options
author | danieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-10-20 04:40:27 +0000 |
---|---|---|
committer | danieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-10-20 04:40:27 +0000 |
commit | 34fbe51fa4d0cb1a5e03089e4d896dbd6de017b0 (patch) | |
tree | 78c2f2c45c7857c9ce14c8770b76c17b21b52d19 /src/commands/cmd_wallops.cpp | |
parent | fa5abf73fee733bda9c99005c447205df2299e14 (diff) |
Move DumpText into User; kill unused WriteWallOps and DecreasePenalty functions
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11931 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/commands/cmd_wallops.cpp')
-rw-r--r-- | src/commands/cmd_wallops.cpp | 24 |
1 files changed, 10 insertions, 14 deletions
diff --git a/src/commands/cmd_wallops.cpp b/src/commands/cmd_wallops.cpp index 7894419c1..52d28e987 100644 --- a/src/commands/cmd_wallops.cpp +++ b/src/commands/cmd_wallops.cpp @@ -13,14 +13,6 @@ #include "inspircd.h" -#ifndef __CMD_WALLOPS_H__ -#define __CMD_WALLOPS_H__ - -// include the common header files - -#include "users.h" -#include "channels.h" - /** Handle /WALLOPS. These command handlers can be reloaded by the core, * and handle basic RFC1459 commands. Commands within modules work * the same way, however, they can be fully unloaded, where these @@ -41,14 +33,18 @@ class CommandWallops : public Command CmdResult Handle(const std::vector<std::string>& parameters, User *user); }; -#endif - - - - CmdResult CommandWallops::Handle (const std::vector<std::string>& parameters, User *user) { - user->WriteWallOps(std::string(parameters[0])); + std::string wallop("WALLOPS :"); + wallop.append(parameters[0]); + + for (std::vector<User*>::const_iterator i = ServerInstance->Users->local_users.begin(); i != ServerInstance->Users->local_users.end(); i++) + { + User* t = *i; + if (t->IsModeSet('w')) + user->WriteTo(t,wallop); + } + FOREACH_MOD(I_OnWallops,OnWallops(user,parameters[0])); return CMD_SUCCESS; } |