]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/coremods/core_info/core_info.cpp
Update the module descriptions.
[user/henk/code/inspircd.git] / src / coremods / core_info / core_info.cpp
index 23b1683ab2472bd24d10302c20a47834f0adb10a..f138494c89564bfa433eda34c5ac2d500375eeb0 100644 (file)
@@ -1,7 +1,9 @@
 /*
  * InspIRCd -- Internet Relay Chat Daemon
  *
- *   Copyright (C) 2014 Attila Molnar <attilamolnar@hush.com>
+ *   Copyright (C) 2018, 2020 Sadie Powell <sadie@witchery.services>
+ *   Copyright (C) 2018 linuxdaemon <linuxdaemon.irc@gmail.com>
+ *   Copyright (C) 2014, 2016, 2018 Attila Molnar <attilamolnar@hush.com>
  *
  * 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
@@ -44,6 +46,7 @@ class CoreModInfo : public Module
        CommandInfo cmdinfo;
        CommandModules cmdmodules;
        CommandMotd cmdmotd;
+       CommandServList cmdservlist;
        CommandTime cmdtime;
        CommandVersion cmdversion;
        Numeric::Numeric numeric004;
@@ -89,6 +92,7 @@ class CoreModInfo : public Module
                , cmdinfo(this)
                , cmdmodules(this)
                , cmdmotd(this)
+               , cmdservlist(this)
                , cmdtime(this)
                , cmdversion(this)
                , numeric004(RPL_MYINFO)
@@ -174,7 +178,7 @@ class CoreModInfo : public Module
 
        Version GetVersion() CXX11_OVERRIDE
        {
-               return Version("Provides the ADMIN, COMMANDS, INFO, MODULES, MOTD, TIME, and VERSION commands", VF_VENDOR|VF_CORE);
+               return Version("Provides the ADMIN, COMMANDS, INFO, MODULES, MOTD, TIME, SERVLIST, and VERSION commands", VF_VENDOR|VF_CORE);
        }
 };