From ad797e3a77c69791c02db6d238817d3e23821dec Mon Sep 17 00:00:00 2001 From: Sadie Powell Date: Thu, 19 Nov 2020 21:19:19 +0000 Subject: [PATCH] Update the module descriptions. --- src/modules/m_channelban.cpp | 2 +- src/modules/m_classban.cpp | 2 +- src/modules/m_connflood.cpp | 2 +- src/modules/m_gecosban.cpp | 2 +- src/modules/m_noctcp.cpp | 2 +- src/modules/m_nopartmsg.cpp | 2 +- src/modules/m_password_hash.cpp | 2 +- src/modules/m_serverban.cpp | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/modules/m_channelban.cpp b/src/modules/m_channelban.cpp index 08b994566..f1679bd5d 100644 --- a/src/modules/m_channelban.cpp +++ b/src/modules/m_channelban.cpp @@ -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 diff --git a/src/modules/m_classban.cpp b/src/modules/m_classban.cpp index 824119c5e..f6967f51f 100644 --- a/src/modules/m_classban.cpp +++ b/src/modules/m_classban.cpp @@ -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); } }; diff --git a/src/modules/m_connflood.cpp b/src/modules/m_connflood.cpp index 55e50a8f1..bd1eea8d0 100644 --- a/src/modules/m_connflood.cpp +++ b/src/modules/m_connflood.cpp @@ -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 diff --git a/src/modules/m_gecosban.cpp b/src/modules/m_gecosban.cpp index 2bbc4ad61..db62663b1 100644 --- a/src/modules/m_gecosban.cpp +++ b/src/modules/m_gecosban.cpp @@ -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 diff --git a/src/modules/m_noctcp.cpp b/src/modules/m_noctcp.cpp index 37e784166..2a61478ab 100644 --- a/src/modules/m_noctcp.cpp +++ b/src/modules/m_noctcp.cpp @@ -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 diff --git a/src/modules/m_nopartmsg.cpp b/src/modules/m_nopartmsg.cpp index 8bfba0cfe..f148b4549 100644 --- a/src/modules/m_nopartmsg.cpp +++ b/src/modules/m_nopartmsg.cpp @@ -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 diff --git a/src/modules/m_password_hash.cpp b/src/modules/m_password_hash.cpp index 2df3300a5..be892e0c6 100644 --- a/src/modules/m_password_hash.cpp +++ b/src/modules/m_password_hash.cpp @@ -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); } }; diff --git a/src/modules/m_serverban.cpp b/src/modules/m_serverban.cpp index d821144ec..d80d789f7 100644 --- a/src/modules/m_serverban.cpp +++ b/src/modules/m_serverban.cpp @@ -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 -- 2.39.2