1
0
mirror of https://github.com/anope/anope.git synced 2026-07-09 02:03:14 +02:00

Fixed these ModuleManager::Attach calls once and for all..

This commit is contained in:
Adam
2011-07-31 06:24:24 -04:00
parent b751800ff4
commit 63a4201d15
40 changed files with 40 additions and 40 deletions
+1 -1
View File
@@ -181,7 +181,7 @@ class NSIdentifyLDAP : public Module
this->SetAuthor("Anope");
Implementation i[] = { I_OnReload, I_OnPreCommand, I_OnCheckAuthentication, I_OnNickIdentify, I_OnNickRegister };
ModuleManager::Attach(i, this, 5);
ModuleManager::Attach(i, this, sizeof(i) / sizeof(Implementation));
ModuleManager::SetPriority(this, PRIORITY_FIRST);
OnReload();