X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_nopartmsg.cpp;h=ad3413101441a8f04a59a722bbd5853d0fb5813e;hb=ac8a394a5c01d8cecd6d1fd364173825ecb452ae;hp=cdd65417ffe0d6fa0324ff683435688b1e7ec99a;hpb=2d043de488ea65807b51b35a4436bbbf570ca29c;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_nopartmsg.cpp b/src/modules/m_nopartmsg.cpp index cdd65417f..ad3413101 100644 --- a/src/modules/m_nopartmsg.cpp +++ b/src/modules/m_nopartmsg.cpp @@ -1,16 +1,22 @@ -/* +------------------------------------+ - * | Inspire Internet Relay Chat Daemon | - * +------------------------------------+ +/* + * InspIRCd -- Internet Relay Chat Daemon * - * InspIRCd: (C) 2002-2009 InspIRCd Development Team - * See: http://wiki.inspircd.org/Credits + * Copyright (C) 2008 Robin Burchell * - * This program is free but copyrighted software; see - * the file COPYING for details. + * This file is part of InspIRCd. InspIRCd is free software: you can + * redistribute it and/or modify it under the terms of the GNU General Public + * License as published by the Free Software Foundation, version 2. * - * --------------------------------------------------- + * This program is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . */ + #include "inspircd.h" /* $ModDesc: Implements extban +b p: - part message bans */ @@ -19,10 +25,10 @@ class ModulePartMsgBan : public Module { private: public: - ModulePartMsgBan() + void init() { Implementation eventlist[] = { I_OnUserPart, I_On005Numeric }; - ServerInstance->Modules->Attach(eventlist, this, 2); + ServerInstance->Modules->Attach(eventlist, this, sizeof(eventlist)/sizeof(Implementation)); } virtual ~ModulePartMsgBan() @@ -31,7 +37,7 @@ class ModulePartMsgBan : public Module virtual Version GetVersion() { - return Version("Implements extban +b p: - part message bans", VF_COMMON|VF_VENDOR, API_VERSION); + return Version("Implements extban +b p: - part message bans", VF_OPTCOMMON|VF_VENDOR); } @@ -41,7 +47,7 @@ class ModulePartMsgBan : public Module return; if (memb->chan->GetExtBanStatus(memb->user, 'p') == MOD_RES_DENY) - partmessage = ""; + partmessage.clear(); return; }