]> git.netwichtig.de Git - user/henk/code/inspircd.git/commitdiff
Update the module descriptions.
authorSadie Powell <sadie@witchery.services>
Thu, 19 Nov 2020 21:19:19 +0000 (21:19 +0000)
committerSadie Powell <sadie@witchery.services>
Fri, 20 Nov 2020 12:10:47 +0000 (12:10 +0000)
src/modules/m_channelban.cpp
src/modules/m_classban.cpp
src/modules/m_connflood.cpp
src/modules/m_gecosban.cpp
src/modules/m_noctcp.cpp
src/modules/m_nopartmsg.cpp
src/modules/m_password_hash.cpp
src/modules/m_serverban.cpp

index 08b994566019e3683fded6f8c6daa50b04e2b729..f1679bd5d26dc4d6d8515598453957ec2b9dc6c8 100644 (file)
@@ -30,7 +30,7 @@ class ModuleBadChannelExtban : public Module
  public:
        Version GetVersion() CXX11_OVERRIDE
        {
-               return Version("Adds the j extended ban which checks whether users are in a channel matching the specified glob pattern.", VF_OPTCOMMON|VF_VENDOR);
+               return Version("Adds the j: extended ban which checks whether users are in a channel matching the specified glob pattern.", VF_OPTCOMMON|VF_VENDOR);
        }
 
        ModResult OnCheckBan(User *user, Channel *c, const std::string& mask) CXX11_OVERRIDE
index 824119c5e232ca952faf9259cf17130a94efe8ae..f6967f51f03a15a17ab1bc04c43029954f5467ee 100644 (file)
@@ -41,7 +41,7 @@ class ModuleClassBan : public Module
 
        Version GetVersion() CXX11_OVERRIDE
        {
-               return Version("Adds the n extended ban which check whether users are in a connect class matching the specified glob pattern.", VF_VENDOR | VF_OPTCOMMON);
+               return Version("Adds the n: extended ban which check whether users are in a connect class matching the specified glob pattern.", VF_VENDOR | VF_OPTCOMMON);
        }
 };
 
index 55e50a8f10c42249d6d76967d64b9bf147b4e7d4..bd1eea8d0b1f674f8c9cc04869a87703ddb64385 100644 (file)
@@ -44,7 +44,7 @@ public:
 
        Version GetVersion() CXX11_OVERRIDE
        {
-               return Version("Throttles IP addresses which make excessive connections to the server.", VF_VENDOR);
+               return Version("Throttles excessive connections to the server.", VF_VENDOR);
        }
 
        void ReadConfig(ConfigStatus& status) CXX11_OVERRIDE
index 2bbc4ad61f9c15b9bfe0b342bfff572493e73e3d..db62663b1d698b2a2e9a83342da2686f18d13816 100644 (file)
@@ -30,7 +30,7 @@ class ModuleGecosBan : public Module
  public:
        Version GetVersion() CXX11_OVERRIDE
        {
-               return Version("Adds the r extended ban which checks whether users have a real name (gecos) matching the specified glob pattern.", VF_OPTCOMMON|VF_VENDOR);
+               return Version("Adds the r: extended ban which checks whether users have a real name (gecos) matching the specified glob pattern.", VF_OPTCOMMON|VF_VENDOR);
        }
 
        ModResult OnCheckBan(User *user, Channel *c, const std::string& mask) CXX11_OVERRIDE
index 37e7841666d12abd16e4eaf8fcc5ae77519fe31a..2a61478ab6e16822e7cd8974994e1cedc2342a92 100644 (file)
@@ -56,7 +56,7 @@ class ModuleNoCTCP : public Module
 
        Version GetVersion() CXX11_OVERRIDE
        {
-               return Version("Adds channel mode C (noctcp) which allows channels to block messages which contain CTCPs.", VF_VENDOR);
+               return Version("Adds channel mode C (noctcp) which allows channels to block messages which contain CTCPs and user mode T (u_noctcp) which allows users to block private messages that contain CTCPs.", VF_VENDOR);
        }
 
        ModResult OnUserPreMessage(User* user, const MessageTarget& target, MessageDetails& details) CXX11_OVERRIDE
index 8bfba0cfe900d0fea69a931f5685c235c4f99297..f148b454924a669db3713861640d855156172541 100644 (file)
@@ -30,7 +30,7 @@ class ModulePartMsgBan : public Module
  public:
        Version GetVersion() CXX11_OVERRIDE
        {
-               return Version("Adds the p extended ban which blocks the part message of matching users.", VF_OPTCOMMON|VF_VENDOR);
+               return Version("Adds the p: extended ban which blocks the part message of matching users.", VF_OPTCOMMON|VF_VENDOR);
        }
 
        void OnUserPart(Membership* memb, std::string &partmessage, CUList& excepts) CXX11_OVERRIDE
index 2df3300a5ea4aed641c6bde26b0d9e35e395bf60..be892e0c65c5c1d05807a143e2e0774982fd5592 100644 (file)
@@ -134,7 +134,7 @@ class ModulePasswordHash : public Module
 
        Version GetVersion() CXX11_OVERRIDE
        {
-               return Version("Adds the /MKPASSWD command which allows the generation of hashed passwords for use in the server configuration.", VF_VENDOR);
+               return Version("Allows passwords to be hashed and adds the /MKPASSWD command which allows the generation of hashed passwords for use in the server configuration.", VF_VENDOR);
        }
 };
 
index d821144ecb4d63da769a9fa752af1dc66a79faac..d80d789f7ae780eaf0f1e6d8b18bfc18aaed1cb0 100644 (file)
@@ -30,7 +30,7 @@ class ModuleServerBan : public Module
  public:
        Version GetVersion() CXX11_OVERRIDE
        {
-               return Version("Adds the s extended ban which check whether users are on a server matching the specified glob pattern.", VF_OPTCOMMON|VF_VENDOR);
+               return Version("Adds the s: extended ban which check whether users are on a server matching the specified glob pattern.", VF_OPTCOMMON|VF_VENDOR);
        }
 
        ModResult OnCheckBan(User *user, Channel *c, const std::string& mask) CXX11_OVERRIDE