Let's not clear the mutelist when a player logs off, since the mutelist

is only populated when the MuteDirector is created, not when someone logs on.
The mutelist is client-side only, and in fact is shared between all users of
a machine. This is something that we should consider fixing now that
1 billion chinese are playing the game in web cafes.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@3088 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Ray Greenwell
2004-08-19 20:59:06 +00:00
parent 85f8a1296a
commit 3d47f13e5a
@@ -1,5 +1,5 @@
//
// $Id: MuteDirector.java,v 1.11 2004/03/06 11:29:18 mdb Exp $
// $Id: MuteDirector.java,v 1.12 2004/08/19 20:59:06 ray Exp $
package com.threerings.crowd.chat.client;
@@ -143,15 +143,6 @@ public class MuteDirector extends BasicDirector
});
}
// documentation inherited
public void clientDidLogoff (Client client)
{
super.clientDidLogoff(client);
// clear the mutelist, don't notify..
_mutelist.clear();
}
/** The chat director that we're working hard for. */
protected ChatDirector _chatdir;