aboutsummaryrefslogtreecommitdiff
path: root/src/modules
diff options
context:
space:
mode:
authorGravatar Sadie Powell2023-08-14 08:11:42 +0100
committerGravatar Sadie Powell2023-08-14 08:24:57 +0100
commitb17a3abbd19918538ce9cbc5ee5dd2d1a2744910 (patch)
treef310b1a45ea4c66b85c780cc0a22b4d1ee587b28 /src/modules
parentAllow permchannels to save the set time and setter of list mode entries. (diff)
Rename the namesx module to multiprefix.
Now the module only implements the IRCv3 capability this is a more accurate name. If users want the protoctl method they can install the protoctl module from contrib as before.
Diffstat (limited to 'src/modules')
-rw-r--r--src/modules/m_multiprefix.cpp (renamed from src/modules/m_namesx.cpp)6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/m_namesx.cpp b/src/modules/m_multiprefix.cpp
index 502478b12..64c3566d9 100644
--- a/src/modules/m_namesx.cpp
+++ b/src/modules/m_multiprefix.cpp
@@ -29,7 +29,7 @@
#include "modules/who.h"
#include "modules/whois.h"
-class ModuleNamesX final
+class ModuleMultiPrefix final
: public Module
, public Names::EventListener
, public Who::EventListener
@@ -39,7 +39,7 @@ private:
Cap::Capability cap;
public:
- ModuleNamesX()
+ ModuleMultiPrefix()
: Module(VF_VENDOR, "Provides the IRCv3 multi-prefix client capability.")
, Names::EventListener(this)
, Who::EventListener(this)
@@ -121,4 +121,4 @@ public:
}
};
-MODULE_INIT(ModuleNamesX)
+MODULE_INIT(ModuleMultiPrefix)