2 * InspIRCd -- Internet Relay Chat Daemon
4 * Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
5 * Copyright (C) 2005, 2007 Robin Burchell <robin+git@viroteck.net>
6 * Copyright (C) 2006 Craig Edwards <craigedwards@brainbox.cc>
8 * This file is part of InspIRCd. InspIRCd is free software: you can
9 * redistribute it and/or modify it under the terms of the GNU General Public
10 * License as published by the Free Software Foundation, version 2.
12 * This program is distributed in the hope that it will be useful, but WITHOUT
13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
14 * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
23 * DEVOICE module for InspIRCd
24 * Syntax: /DEVOICE <#chan>
31 class CommandDevoice : public Command
34 CommandDevoice(Module* Creator) : Command(Creator,"DEVOICE", 1)
39 CmdResult Handle (const std::vector<std::string> ¶meters, User *user)
41 std::vector<std::string> modes;
42 modes.push_back(parameters[0]);
43 modes.push_back("-v");
44 modes.push_back(user->nick);
46 ServerInstance->Parser.CallHandler("MODE", modes, ServerInstance->FakeClient);
51 class ModuleDeVoice : public Module
55 ModuleDeVoice() : cmd(this)
59 Version GetVersion() CXX11_OVERRIDE
61 return Version("Provides voiced users with the ability to devoice themselves.", VF_VENDOR);
65 MODULE_INIT(ModuleDeVoice)