X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_globalload.cpp;h=71a455a34f7da7c7b62f6510210bb7b41ebc3e6d;hb=6cfabb0064cab52bbbab59974e53dc0fa1954da7;hp=8bd63a065ace10acd606672786e5315b556807a5;hpb=87b1461e2a4710a38b32186c2582da9fe9bb3804;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_globalload.cpp b/src/modules/m_globalload.cpp index 8bd63a065..71a455a34 100644 --- a/src/modules/m_globalload.cpp +++ b/src/modules/m_globalload.cpp @@ -1,12 +1,14 @@ /* * InspIRCd -- Internet Relay Chat Daemon * - * Copyright (C) 2011 Jackmcbarn - * Copyright (C) 2009 Daniel De Graaf - * Copyright (C) 2006-2008 Craig Edwards + * Copyright (C) 2013, 2017-2018, 2020 Sadie Powell + * Copyright (C) 2012, 2019 Robby + * Copyright (C) 2012, 2014-2016 Attila Molnar + * Copyright (C) 2009-2010 Daniel De Graaf + * Copyright (C) 2007-2008, 2010 Craig Edwards * Copyright (C) 2007-2008 Dennis Friis - * Copyright (C) 2006-2007 Robin Burchell - * Copyright (C) 2006 John Brooks + * Copyright (C) 2007, 2009 Robin Burchell + * Copyright (C) 2007 John Brooks * * 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 @@ -122,7 +124,8 @@ class CommandGreloadmodule : public Command public: CommandGreloadmodule(Module* Creator) : Command(Creator, "GRELOADMODULE", 1) { - flags_needed = 'o'; syntax = " []"; + flags_needed = 'o'; + syntax = " []"; } CmdResult Handle(User* user, const Params& parameters) CXX11_OVERRIDE @@ -169,7 +172,7 @@ class ModuleGlobalLoad : public Module Version GetVersion() CXX11_OVERRIDE { - return Version("Allows global loading of a module", VF_COMMON | VF_VENDOR); + return Version("Adds the /GLOADMODULE, /GRELOADMODULE, and /GUNLOADMODULE commands which allows server operators to load, reload, and unload modules on remote servers.", VF_COMMON | VF_VENDOR); } };