diff options
author | peavey <peavey@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-10-13 14:16:16 +0000 |
---|---|---|
committer | peavey <peavey@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-10-13 14:16:16 +0000 |
commit | 2d043de488ea65807b51b35a4436bbbf570ca29c (patch) | |
tree | f07129f223918ecfbc38ec331b99b551a12a6ce6 /src/modules/m_nopartmsg.cpp | |
parent | d1ddbd62f91d4b9453447b5d25f5e41e807b0010 (diff) |
removes unnecessary checks in modules, removes a superfluous else statement, fixes some formatting. Patch by dKingston.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11867 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_nopartmsg.cpp')
-rw-r--r-- | src/modules/m_nopartmsg.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/modules/m_nopartmsg.cpp b/src/modules/m_nopartmsg.cpp index 270159147..cdd65417f 100644 --- a/src/modules/m_nopartmsg.cpp +++ b/src/modules/m_nopartmsg.cpp @@ -19,7 +19,8 @@ class ModulePartMsgBan : public Module { private: public: - ModulePartMsgBan() { + ModulePartMsgBan() + { Implementation eventlist[] = { I_OnUserPart, I_On005Numeric }; ServerInstance->Modules->Attach(eventlist, this, 2); } |