X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_inviteexception.cpp;h=d902310811b9cc1fde47f104fc1b865f94580170;hb=46e56dedd37abe33af4e8b970d5b83729dc1ef05;hp=7fe7d40dccc261fb790f5d2c865bff5bd06fec29;hpb=c4d6ce8c5e1802e5b834d5845e31c3adf7700585;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_inviteexception.cpp b/src/modules/m_inviteexception.cpp index 7fe7d40dc..d90231081 100644 --- a/src/modules/m_inviteexception.cpp +++ b/src/modules/m_inviteexception.cpp @@ -2,7 +2,7 @@ * | Inspire Internet Relay Chat Daemon | * +------------------------------------+ * - * InspIRCd: (C) 2002-2009 InspIRCd Development Team + * InspIRCd: (C) 2002-2010 InspIRCd Development Team * See: http://wiki.inspircd.org/Credits * * This program is free but copyrighted software; see @@ -43,7 +43,6 @@ public: { if (!ServerInstance->Modes->AddMode(&ie)) throw ModuleException("Could not add new modes!"); - ServerInstance->Modules->PublishInterface("ChannelBanList", this); ie.DoImplements(this); Implementation eventlist[] = { I_On005Numeric, I_OnCheckInvite }; @@ -62,7 +61,6 @@ public: modelist* list = ie.extItem.get(chan); if (list) { - std::string mask = std::string(user->nick) + "!" + user->ident + "@" + user->GetIPString(); for (modelist::iterator it = list->begin(); it != list->end(); it++) { if (chan->CheckBan(user, it->mask)) @@ -71,7 +69,6 @@ public: } } } - // or if there wasn't a list, there can't be anyone on it, so we don't need to do anything. } return MOD_RES_PASSTHRU; @@ -94,12 +91,7 @@ public: Version GetVersion() { - return Version("Provides support for the +I channel mode", VF_VENDOR | VF_COMMON, API_VERSION); - } - - ~ModuleInviteException() - { - ServerInstance->Modules->UnpublishInterface("ChannelBanList", this); + return Version("Provides support for the +I channel mode", VF_VENDOR); } };