From c68d2cb200c01b95017cf88d8b4f0fb96d5e97b8 Mon Sep 17 00:00:00 2001 From: w00t Date: Thu, 22 Jan 2009 14:17:24 +0000 Subject: Fix bug #678 reported by Ankit (opertype invex wasn't working, as I failed and forgot to hook the damn event.) git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@10978 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/modules/m_operinvex.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/modules/m_operinvex.cpp b/src/modules/m_operinvex.cpp index 8f01e1bfe..fda38fb8c 100644 --- a/src/modules/m_operinvex.cpp +++ b/src/modules/m_operinvex.cpp @@ -24,8 +24,8 @@ class ModuleOperInvex : public Module public: ModuleOperInvex(InspIRCd* Me) : Module(Me) { - Implementation eventlist[] = { I_OnUserPreJoin, I_On005Numeric }; - ServerInstance->Modules->Attach(eventlist, this, 2); + Implementation eventlist[] = { I_OnUserPreJoin, I_On005Numeric, I_OnCheckInvite }; + ServerInstance->Modules->Attach(eventlist, this, 3); } virtual ~ModuleOperInvex() -- cgit v1.2.3