Update the module descriptions.

This commit is contained in:
Sadie Powell 2020-11-19 21:19:19 +00:00
parent 061a2e1aed
commit ad797e3a77
8 changed files with 8 additions and 8 deletions

View 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

View 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);
}
};

View 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

View 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

View 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

View 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

View 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);
}
};

View 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