From 6dadb437999760fc10757cf4b9faba4702b1c011 Mon Sep 17 00:00:00 2001 From: brain Date: Fri, 4 May 2007 16:23:40 +0000 Subject: Add which determines if auditorium works like ircnet +a (anonymous channels) or like unrealircd +u. The old behaviour is similar to anonymous channels, only showing the current user. git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6875 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/modules/m_namesx.cpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'src/modules/m_namesx.cpp') diff --git a/src/modules/m_namesx.cpp b/src/modules/m_namesx.cpp index badbae074..5194224b7 100644 --- a/src/modules/m_namesx.cpp +++ b/src/modules/m_namesx.cpp @@ -67,7 +67,7 @@ class ModuleNamesX : public Module return 0; } - virtual int OnUserList(userrec* user, chanrec* Ptr) + virtual int OnUserList(userrec* user, chanrec* Ptr, CUList* &ulist) { if (user->GetExt("NAMESX")) { @@ -76,7 +76,10 @@ class ModuleNamesX : public Module dlen = curlen = snprintf(list,MAXBUF,"353 %s = %s :", user->nick, Ptr->name); int numusers = 0; char* ptr = list + dlen; - CUList *ulist= Ptr->GetUsers(); + + if (!ulist) + ulist = Ptr->GetUsers(); + bool has_user = Ptr->HasUser(user); for (CUList::iterator i = ulist->begin(); i != ulist->end(); i++) { -- cgit v1.3.1-10-gc9f91