Update module descriptions.

This commit is contained in:
Sadie Powell 2021-12-30 18:49:37 +00:00
parent 9306d5474d
commit 997cec0ac5
8 changed files with 8 additions and 8 deletions

View File

@ -63,7 +63,7 @@ class ModuleAllowInvite : public Module
Version GetVersion() CXX11_OVERRIDE
{
return Version("Adds channel mode A (allowinvite) which allows unprivileged users to use the /INVITE command and extended ban A: which bans specific masks from using the /INVITE command.", VF_VENDOR);
return Version("Adds channel mode A (allowinvite) which allows unprivileged users to use the /INVITE command and extended ban A: (blockinvite) which bans specific masks from using the /INVITE command.", VF_VENDOR);
}
};

View File

@ -30,7 +30,7 @@ class ModuleBadChannelExtban : public Module
public:
Version GetVersion() CXX11_OVERRIDE
{
return Version("Adds extended ban j: which checks whether users are in a channel matching the specified glob pattern.", VF_OPTCOMMON|VF_VENDOR);
return Version("Adds extended ban j: (channel) 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

@ -55,7 +55,7 @@ class ModuleClassBan : public Module
Version GetVersion() CXX11_OVERRIDE
{
return Version("Adds extended ban n: which check whether users are in a connect class matching the specified glob pattern.", VF_VENDOR | VF_OPTCOMMON);
return Version("Adds extended ban n: (class) which check whether users are in a connect class matching the specified glob pattern.", VF_VENDOR | VF_OPTCOMMON);
}
};

View File

@ -30,7 +30,7 @@ class ModuleGecosBan : public Module
public:
Version GetVersion() CXX11_OVERRIDE
{
return Version("Adds extended ban r: which checks whether users have a real name (gecos) matching the specified glob pattern.", VF_OPTCOMMON|VF_VENDOR);
return Version("Adds extended bans a: (realmask) and r:(realname) 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

@ -38,7 +38,7 @@ class ModuleGeoBan
Version GetVersion() CXX11_OVERRIDE
{
return Version("Adds extended ban G: which matches against two letter country codes.", VF_OPTCOMMON|VF_VENDOR);
return Version("Adds extended ban G: (country) which matches against two letter country codes.", VF_OPTCOMMON|VF_VENDOR);
}
void On005Numeric(std::map<std::string, std::string>& tokens) CXX11_OVERRIDE

View File

@ -46,7 +46,7 @@ class ModuleQuietBan
Version GetVersion() CXX11_OVERRIDE
{
return Version("Adds extended ban m: which bans specific masks from speaking in a channel.", VF_OPTCOMMON|VF_VENDOR);
return Version("Adds extended ban m: (mute) which bans specific masks from speaking in a channel.", VF_OPTCOMMON|VF_VENDOR);
}
ModResult HandleMessage(User* user, const MessageTarget& target, bool& echo_original)

View File

@ -30,7 +30,7 @@ class ModulePartMsgBan : public Module
public:
Version GetVersion() CXX11_OVERRIDE
{
return Version("Adds extended ban p: which blocks the part message of matching users.", VF_OPTCOMMON|VF_VENDOR);
return Version("Adds extended ban p: (partmsg) 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

@ -30,7 +30,7 @@ class ModuleServerBan : public Module
public:
Version GetVersion() CXX11_OVERRIDE
{
return Version("Adds extended ban s: which check whether users are on a server matching the specified glob pattern.", VF_OPTCOMMON|VF_VENDOR);
return Version("Adds extended ban s: (server) 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