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_alias.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_alias.cpp')
| -rw-r--r-- | src/modules/m_alias.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_alias.cpp b/src/modules/m_alias.cpp index 5b3979179..6bd59a780 100644 --- a/src/modules/m_alias.cpp +++ b/src/modules/m_alias.cpp @@ -351,7 +351,7 @@ class ModuleAlias : public Module { // Prioritise after spanningtree so that channel aliases show the alias before the effects. Module* linkmod = ServerInstance->Modules->Find("m_spanningtree.so"); - ServerInstance->Modules->SetPriority(this, I_OnUserMessage, PRIORITY_AFTER, &linkmod); + ServerInstance->Modules->SetPriority(this, I_OnUserMessage, PRIORITY_AFTER, linkmod); } }; |
