From 8f833415a32147da9c8e68d560d3d88ae91b9941 Mon Sep 17 00:00:00 2001 From: brain Date: Fri, 4 May 2007 12:31:53 +0000 Subject: When we silence the event, not even the user whos leaving/joining gets the output, make sure we send it to them in the module git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6863 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/modules/m_auditorium.cpp | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/modules/m_auditorium.cpp b/src/modules/m_auditorium.cpp index c60bed9b9..67670134e 100644 --- a/src/modules/m_auditorium.cpp +++ b/src/modules/m_auditorium.cpp @@ -95,13 +95,23 @@ class ModuleAuditorium : public Module virtual void OnUserJoin(userrec* user, chanrec* channel, bool &silent) { if (channel->IsModeSet('u')) + { silent = true; + /* Because we silenced the event, make sure it reaches the user whos joining (but only them of course) */ + user->WriteFrom(user, "JOIN %s", channel->name); + } } void OnUserPart(userrec* user, chanrec* channel, const std::string &partmessage, bool &silent) { if (channel->IsModeSet('u')) + { silent = true; + /* Because we silenced the event, make sure it reaches the user whos leaving (but only them of course) */ + user->WriteFrom(user, "PART %s%s%s", channel->name, + partmessage.empty() ? "" : " :", + partmessage.empty() ? "" : partmessage.c_str()); + } } void OnUserKick(userrec* source, userrec* user, chanrec* chan, const std::string &reason, bool &silent) -- cgit v1.2.3