diff options
| author | 2019-08-13 17:01:25 +0100 | |
|---|---|---|
| committer | 2019-08-13 17:36:19 +0100 | |
| commit | 21664767f0a9d6f6c7d81c46efa84f725d1bd1f3 (patch) | |
| tree | b9b8228b5fc7d48466e8ec1e37887f8634e9039d /src/modules/m_delayjoin.cpp | |
| parent | Rename ExtensionItem::free to ExtensionItem::Delete. (diff) | |
Move the Module parameter of ExtensionItem et al to the start.
This matches what other ServiceProvider types do.
Diffstat (limited to 'src/modules/m_delayjoin.cpp')
| -rw-r--r-- | src/modules/m_delayjoin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_delayjoin.cpp b/src/modules/m_delayjoin.cpp index 2e0470294..8730fc4b4 100644 --- a/src/modules/m_delayjoin.cpp +++ b/src/modules/m_delayjoin.cpp @@ -87,7 +87,7 @@ class ModuleDelayJoin ModuleDelayJoin() : CTCTags::EventListener(this) , Names::EventListener(this) - , unjoined("delayjoin", ExtensionItem::EXT_MEMBERSHIP, this) + , unjoined(this, "delayjoin", ExtensionItem::EXT_MEMBERSHIP) , joinhook(this, unjoined) , djm(this, unjoined) { |
