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_shun.cpp | |
| parent | Remove I_BEGIN from enum Implementation (diff) | |
| download | inspircd++-bfc1abbcad598fcbc6921fa72b950144b13e059f.tar.gz inspircd++-bfc1abbcad598fcbc6921fa72b950144b13e059f.tar.bz2 inspircd++-bfc1abbcad598fcbc6921fa72b950144b13e059f.zip | |
Convert mods calling the old compat wrapper of ModuleManager::SetPriority() to use the current method, remove wrapper
Diffstat (limited to 'src/modules/m_shun.cpp')
| -rw-r--r-- | src/modules/m_shun.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_shun.cpp b/src/modules/m_shun.cpp index 7ea16b5b0..a3a2909a0 100644 --- a/src/modules/m_shun.cpp +++ b/src/modules/m_shun.cpp @@ -191,7 +191,7 @@ class ModuleShun : public Module void Prioritize() { Module* alias = ServerInstance->Modules->Find("m_alias.so"); - ServerInstance->Modules->SetPriority(this, I_OnPreCommand, PRIORITY_BEFORE, &alias); + ServerInstance->Modules->SetPriority(this, I_OnPreCommand, PRIORITY_BEFORE, alias); } ModResult OnStats(char symbol, User* user, string_list& out) CXX11_OVERRIDE |
