]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_autoop.cpp
Sync helpop chmodes s and p with docs
[user/henk/code/inspircd.git] / src / modules / m_autoop.cpp
index 152e9d679e3f84db4193014fa5ec38b61461c4aa..f7936f3576e0c448707f2ff87dfc0a4e1652bfa7 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * InspIRCd -- Internet Relay Chat Daemon
  *
- *   Copyright (C) 2013, 2017-2019 Sadie Powell <sadie@witchery.services>
+ *   Copyright (C) 2013, 2017-2020 Sadie Powell <sadie@witchery.services>
  *   Copyright (C) 2012-2015 Attila Molnar <attilamolnar@hush.com>
  *   Copyright (C) 2012, 2019 Robby <robby@chatbelgie.be>
  *   Copyright (C) 2011 jackmcbarn <jackmcbarn@inspircd.org>
 #include "inspircd.h"
 #include "listmode.h"
 
-/** Handles +w channel mode
- */
+enum
+{
+       // InspIRCd-specific.
+       RPL_ACCESSLIST = 910,
+       RPL_ENDOFACCESSLIST = 911
+};
+
 class AutoOpList : public ListModeBase
 {
  public:
        AutoOpList(Module* Creator)
-               : ListModeBase(Creator, "autoop", 'w', "End of Channel Access List", 910, 911, true)
+               : ListModeBase(Creator, "autoop", 'w', "End of Channel Access List", RPL_ACCESSLIST, RPL_ENDOFACCESSLIST, true)
        {
                ranktoset = ranktounset = OP_VALUE;
                syntax = "<prefix>:<mask>";
@@ -117,7 +122,7 @@ class ModuleAutoOp : public Module
 
        Version GetVersion() CXX11_OVERRIDE
        {
-               return Version("Provides channel mode +w, basic channel access controls", VF_VENDOR);
+               return Version("Adds channel mode w (autoop) which allows channel operators to define an access list which gives status ranks to users on join.", VF_VENDOR);
        }
 };