X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Fmodules%2Fm_globalload.cpp;h=71a455a34f7da7c7b62f6510210bb7b41ebc3e6d;hb=3151d60c1ecc9462e4c335282ee6c31672f45111;hp=0f3d0c27f6a01347c11f2354150597ab186f4dd0;hpb=aa692dc1039b63deef7886e914ec499abe7facaf;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_globalload.cpp b/src/modules/m_globalload.cpp index 0f3d0c27f..71a455a34 100644 --- a/src/modules/m_globalload.cpp +++ b/src/modules/m_globalload.cpp @@ -1,7 +1,7 @@ /* * InspIRCd -- Internet Relay Chat Daemon * - * Copyright (C) 2013, 2017-2018 Sadie Powell + * 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 @@ -124,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 @@ -171,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); } };