Skip to content

Commit

Permalink
When we silence the event, not even the user whos leaving/joining get…
Browse files Browse the repository at this point in the history
…s 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
  • Loading branch information
braindigitalis committed May 4, 2007
1 parent bb6a9af commit 8f83341
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/modules/m_auditorium.cpp
Expand Up @@ -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)
Expand Down

0 comments on commit 8f83341

Please sign in to comment.