aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/m_nicklock.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2021-12-23 21:28:04 +0000
committerGravatar Sadie Powell2021-12-23 21:34:53 +0000
commit6282e1f28716b4a9beae52779119cf75373e3ee4 (patch)
tree5431efb60b50d1249af5980a8389d511d0c760f1 /src/modules/m_nicklock.cpp
parentFix an unintentionally inverted condition in the dnsbl module. (diff)
Promote ExtensionItem::ExtensibleType to a top level enum class.
Diffstat (limited to 'src/modules/m_nicklock.cpp')
-rw-r--r--src/modules/m_nicklock.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_nicklock.cpp b/src/modules/m_nicklock.cpp
index a761350d1..66b6dc207 100644
--- a/src/modules/m_nicklock.cpp
+++ b/src/modules/m_nicklock.cpp
@@ -151,7 +151,7 @@ class ModuleNickLock final
public:
ModuleNickLock()
: Module(VF_VENDOR | VF_OPTCOMMON, "Adds the /NICKLOCK command which allows server operators to change a user's nickname and prevent them from changing it again until they disconnect.")
- , locked(this, "nick_locked", ExtensionItem::EXT_USER)
+ , locked(this, "nick_locked", ExtensionType::USER)
, cmd1(this, locked)
, cmd2(this, locked)
{