From 974bc2356a808849d535d9cae0be62981c911b22 Mon Sep 17 00:00:00 2001 From: brain Date: Mon, 28 Mar 2005 18:16:58 +0000 Subject: Fixed to take away +q and +a when the user parts the channel (double DOH) git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@931 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/modules/m_chanprotect.cpp | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src') diff --git a/src/modules/m_chanprotect.cpp b/src/modules/m_chanprotect.cpp index c762fb6a4..698e2fbc1 100644 --- a/src/modules/m_chanprotect.cpp +++ b/src/modules/m_chanprotect.cpp @@ -68,6 +68,13 @@ class ModuleChanProtect : public Module output = temp2.substr(0,temp2.length()-1); } + virtual void OnUserPart(userrec* user, chanrec* channel) + { + // FIX: when someone parts a channel we must remove their Extensibles! + user->Shrink("cm_founder_"+std::string(channel->name)); + user->Shrink("cm_protect_"+std::string(channel->name)); + } + virtual void OnRehash() { // on a rehash we delete our classes for good measure and create them again. -- cgit v1.2.3