diff options
| author | 2012-05-27 06:10:41 -0700 | |
|---|---|---|
| committer | 2012-05-27 06:10:41 -0700 | |
| commit | 9383bf66fa02e37a4cea904fe9be4fe4f5eb7fa0 (patch) | |
| tree | a510b6a8ada2a2fa975ee32ee1ebb38aa8319856 /src/modules/m_cban.cpp | |
| parent | Merge pull request #129 from attilamolnar/insp12+modestringfix (diff) | |
| parent | m_opermodes Get rid of the duplicated s2s message caused by SendGlobalMode (diff) | |
Merge pull request #130 from attilamolnar/insp12+modfixes
Minor improvements and fixes to several modules
Diffstat (limited to 'src/modules/m_cban.cpp')
| -rw-r--r-- | src/modules/m_cban.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_cban.cpp b/src/modules/m_cban.cpp index 6d91f2a5d..350cec914 100644 --- a/src/modules/m_cban.cpp +++ b/src/modules/m_cban.cpp @@ -176,8 +176,8 @@ class ModuleCBan : public Module mycommand = new CommandCBan(Me); ServerInstance->AddCommand(mycommand); - Implementation eventlist[] = { I_OnUserPreJoin, I_OnSyncOtherMetaData, I_OnDecodeMetaData, I_OnStats }; - ServerInstance->Modules->Attach(eventlist, this, 4); + Implementation eventlist[] = { I_OnUserPreJoin, I_OnStats }; + ServerInstance->Modules->Attach(eventlist, this, 2); } virtual ~ModuleCBan() |
