X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_modenotice.cpp;h=0d29657d5fdf2e2ac8fe9dd1af3f1ec9668332dd;hb=80e81e3b81b779901fd9d67f8ae030ee30c0bcec;hp=e02c9147faf4156b415c501a6b07337c5f0b890f;hpb=e35772f19024fb12edda9cff19d3812272f444db;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_modenotice.cpp b/src/modules/m_modenotice.cpp index e02c9147f..0d29657d5 100644 --- a/src/modules/m_modenotice.cpp +++ b/src/modules/m_modenotice.cpp @@ -1,7 +1,10 @@ /* * InspIRCd -- Internet Relay Chat Daemon * - * Copyright (C) 2009 Daniel De Graaf + * Copyright (C) 2018 Sadie Powell + * Copyright (C) 2013-2014 Attila Molnar + * Copyright (C) 2012, 2019 Robby + * Copyright (C) 2009-2010 Daniel De Graaf * * This file is part of InspIRCd. InspIRCd is free software: you can * redistribute it and/or modify it under the terms of the GNU General Public @@ -24,15 +27,16 @@ class CommandModeNotice : public Command public: CommandModeNotice(Module* parent) : Command(parent,"MODENOTICE",2,2) { - syntax = " "; + syntax = " :"; flags_needed = 'o'; } - CmdResult Handle(const std::vector& parameters, User *src) + CmdResult Handle(User* src, const Params& parameters) CXX11_OVERRIDE { std::string msg = "*** From " + src->nick + ": " + parameters[1]; int mlen = parameters[0].length(); - for (LocalUserList::const_iterator i = ServerInstance->Users->local_users.begin(); i != ServerInstance->Users->local_users.end(); i++) + const UserManager::LocalList& list = ServerInstance->Users.GetLocalUsers(); + for (UserManager::LocalList::const_iterator i = list.begin(); i != list.end(); ++i) { User* user = *i; for (int n = 0; n < mlen; n++) @@ -46,7 +50,7 @@ next_user: ; return CMD_SUCCESS; } - RouteDescriptor GetRouting(User* user, const std::vector& parameters) + RouteDescriptor GetRouting(User* user, const Params& parameters) CXX11_OVERRIDE { return ROUTE_OPT_BCAST; } @@ -64,7 +68,7 @@ class ModuleModeNotice : public Module Version GetVersion() CXX11_OVERRIDE { - return Version("Provides the /MODENOTICE command", VF_VENDOR); + return Version("Adds the /MODENOTICE command which sends a message to all users with the specified user modes set.", VF_VENDOR); } };