diff options
| author | 2015-02-15 17:56:01 +0100 | |
|---|---|---|
| committer | 2015-02-15 17:56:01 +0100 | |
| commit | bfc1abbcad598fcbc6921fa72b950144b13e059f (patch) | |
| tree | 7a43677d5512d8e1c0f6c8151beae9e85ec7b846 /src/modules/m_nicklock.cpp | |
| parent | Remove I_BEGIN from enum Implementation (diff) | |
Convert mods calling the old compat wrapper of ModuleManager::SetPriority() to use the current method, remove wrapper
Diffstat (limited to 'src/modules/m_nicklock.cpp')
| -rw-r--r-- | src/modules/m_nicklock.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_nicklock.cpp b/src/modules/m_nicklock.cpp index 8ac2e8b47..a99628bf1 100644 --- a/src/modules/m_nicklock.cpp +++ b/src/modules/m_nicklock.cpp @@ -168,7 +168,7 @@ class ModuleNickLock : public Module void Prioritize() { Module *nflood = ServerInstance->Modules->Find("m_nickflood.so"); - ServerInstance->Modules->SetPriority(this, I_OnUserPreNick, PRIORITY_BEFORE, &nflood); + ServerInstance->Modules->SetPriority(this, I_OnUserPreNick, PRIORITY_BEFORE, nflood); } }; |
