aboutsummaryrefslogtreecommitdiff
path: root/src/modules
diff options
context:
space:
mode:
authorGravatar Sadie Powell2021-12-15 08:27:44 +0000
committerGravatar Sadie Powell2021-12-15 08:27:44 +0000
commitd4eed99de75c2e693ed68635785c84d514ff76b5 (patch)
treeb714c7124b326071da051e27b6634c24216b6ab5 /src/modules
parentMerge branch 'insp3' into master. (diff)
Update module descriptions.
Diffstat (limited to 'src/modules')
-rw-r--r--src/modules/m_allowinvite.cpp2
-rw-r--r--src/modules/m_channelban.cpp2
-rw-r--r--src/modules/m_classban.cpp2
-rw-r--r--src/modules/m_geoban.cpp2
-rw-r--r--src/modules/m_muteban.cpp2
-rw-r--r--src/modules/m_nopartmsg.cpp2
-rw-r--r--src/modules/m_realnameban.cpp2
-rw-r--r--src/modules/m_serverban.cpp2
8 files changed, 8 insertions, 8 deletions
diff --git a/src/modules/m_allowinvite.cpp b/src/modules/m_allowinvite.cpp
index b43a54d11..07e853f3f 100644
--- a/src/modules/m_allowinvite.cpp
+++ b/src/modules/m_allowinvite.cpp
@@ -35,7 +35,7 @@ class ModuleAllowInvite final
public:
ModuleAllowInvite()
- : Module(VF_VENDOR, "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.")
+ : Module(VF_VENDOR, "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.")
, extban(this, "blockinvite", 'A')
, ni(this, "allowinvite", 'A')
{
diff --git a/src/modules/m_channelban.cpp b/src/modules/m_channelban.cpp
index 39235e6ff..0a6fa57cb 100644
--- a/src/modules/m_channelban.cpp
+++ b/src/modules/m_channelban.cpp
@@ -64,7 +64,7 @@ class ModuleBadChannelExtban final
public:
ModuleBadChannelExtban()
- : Module(VF_VENDOR | VF_OPTCOMMON, "Adds extended ban j: which checks whether users are in a channel matching the specified glob pattern.")
+ : Module(VF_VENDOR | VF_OPTCOMMON, "Adds extended ban j: (channel) which checks whether users are in a channel matching the specified glob pattern.")
, extban(this)
{
}
diff --git a/src/modules/m_classban.cpp b/src/modules/m_classban.cpp
index faa9edb6e..6aebe4a64 100644
--- a/src/modules/m_classban.cpp
+++ b/src/modules/m_classban.cpp
@@ -57,7 +57,7 @@ class ModuleClassBan final
public:
ModuleClassBan()
- : Module(VF_VENDOR | VF_OPTCOMMON, "Adds extended ban n: which check whether users are in a connect class matching the specified glob pattern.")
+ : Module(VF_VENDOR | VF_OPTCOMMON, "Adds extended ban n: (class) which check whether users are in a connect class matching the specified glob pattern.")
, extban(this)
{
}
diff --git a/src/modules/m_geoban.cpp b/src/modules/m_geoban.cpp
index a0de1e4da..fb1172ba6 100644
--- a/src/modules/m_geoban.cpp
+++ b/src/modules/m_geoban.cpp
@@ -56,7 +56,7 @@ class ModuleGeoBan final
public:
ModuleGeoBan()
- : Module(VF_VENDOR | VF_OPTCOMMON, "Adds extended ban G: which matches against two letter country codes.")
+ : Module(VF_VENDOR | VF_OPTCOMMON, "Adds extended ban G: (country) which matches against two letter country codes.")
, Whois::EventListener(this)
, geoapi(this)
, extban(this, geoapi)
diff --git a/src/modules/m_muteban.cpp b/src/modules/m_muteban.cpp
index 0208bec77..643a01fcf 100644
--- a/src/modules/m_muteban.cpp
+++ b/src/modules/m_muteban.cpp
@@ -36,7 +36,7 @@ class ModuleQuietBan final
public:
ModuleQuietBan()
- : Module(VF_VENDOR | VF_OPTCOMMON, "Adds extended ban m: which bans specific masks from speaking in a channel.")
+ : Module(VF_VENDOR | VF_OPTCOMMON, "Adds extended ban m: (mute) which bans specific masks from speaking in a channel.")
, CTCTags::EventListener(this)
, extban(this, "mute", 'm')
{
diff --git a/src/modules/m_nopartmsg.cpp b/src/modules/m_nopartmsg.cpp
index e756d6b80..1474b65de 100644
--- a/src/modules/m_nopartmsg.cpp
+++ b/src/modules/m_nopartmsg.cpp
@@ -34,7 +34,7 @@ class ModulePartMsgBan final
public:
ModulePartMsgBan()
- : Module(VF_VENDOR | VF_OPTCOMMON, "Adds extended ban p: which blocks the part message of matching users.")
+ : Module(VF_VENDOR | VF_OPTCOMMON, "Adds extended ban p: (partmsg) which blocks the part message of matching users.")
, extban(this, "partmsg", 'p')
{
}
diff --git a/src/modules/m_realnameban.cpp b/src/modules/m_realnameban.cpp
index 18b5513f4..be6e1bc39 100644
--- a/src/modules/m_realnameban.cpp
+++ b/src/modules/m_realnameban.cpp
@@ -75,7 +75,7 @@ class ModuleGecosBan final
public:
ModuleGecosBan()
- : Module(VF_VENDOR | VF_OPTCOMMON, "Adds extended ban r: which checks whether users have a real name matching the specified glob pattern.")
+ : Module(VF_VENDOR | VF_OPTCOMMON, "Adds extended bans a: (realmask) and r:(realname) which checks whether users have a real name matching the specified glob pattern.")
, maskextban(this)
, realextban(this)
{
diff --git a/src/modules/m_serverban.cpp b/src/modules/m_serverban.cpp
index 8ea84c4c9..65a03c8c2 100644
--- a/src/modules/m_serverban.cpp
+++ b/src/modules/m_serverban.cpp
@@ -49,7 +49,7 @@ class ModuleServerBan final
public:
ModuleServerBan()
- : Module(VF_VENDOR | VF_OPTCOMMON, "Adds extended ban s: which check whether users are on a server matching the specified glob pattern.")
+ : Module(VF_VENDOR | VF_OPTCOMMON, "Adds extended ban s: (server) which check whether users are on a server matching the specified glob pattern.")
, extban(this)
{
}