diff options
| author | 2023-01-11 00:37:09 +0000 | |
|---|---|---|
| committer | 2023-01-11 00:56:10 +0000 | |
| commit | b7b72521a7066f7694fdcc78702936fae4b11894 (patch) | |
| tree | 2ecc424d56526cb8e8cd0e846a285c53628ae385 /src/modules/m_autoop.cpp | |
| parent | Qualify auto correctly in all cases. (diff) | |
Fix calling various static functions through a type instance.
Diffstat (limited to 'src/modules/m_autoop.cpp')
| -rw-r--r-- | src/modules/m_autoop.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_autoop.cpp b/src/modules/m_autoop.cpp index 216130ab5..d730a5caa 100644 --- a/src/modules/m_autoop.cpp +++ b/src/modules/m_autoop.cpp @@ -112,7 +112,7 @@ public: if (memb->chan->CheckBan(memb->user, entry.mask.substr(colon + 1))) { - PrefixMode* given = mh.FindMode(entry.mask.substr(0, colon)); + PrefixMode* given = AutoOpList::FindMode(entry.mask.substr(0, colon)); if (given) changelist.push_add(given, memb->user->nick); } |
