diff options
| author | 2021-12-23 21:28:04 +0000 | |
|---|---|---|
| committer | 2021-12-23 21:34:53 +0000 | |
| commit | 6282e1f28716b4a9beae52779119cf75373e3ee4 (patch) | |
| tree | 5431efb60b50d1249af5980a8389d511d0c760f1 /src/modules/m_cap.cpp | |
| parent | Fix an unintentionally inverted condition in the dnsbl module. (diff) | |
Promote ExtensionItem::ExtensibleType to a top level enum class.
Diffstat (limited to 'src/modules/m_cap.cpp')
| -rw-r--r-- | src/modules/m_cap.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_cap.cpp b/src/modules/m_cap.cpp index 1f8742e8d..09088387e 100644 --- a/src/modules/m_cap.cpp +++ b/src/modules/m_cap.cpp @@ -313,7 +313,7 @@ namespace } Cap::ExtItem::ExtItem(Module* mod) - : IntExtItem(mod, "caps", ExtensionItem::EXT_USER) + : IntExtItem(mod, "caps", ExtensionType::USER) { } @@ -400,7 +400,7 @@ class CommandCap final , evprov(mod, "event/cap") , manager(mod, evprov) , protoevprov(mod, name) - , holdext(mod, "cap_hold", ExtensionItem::EXT_USER) + , holdext(mod, "cap_hold", ExtensionType::USER) { works_before_reg = true; } |
