From 3d47f13e5a73c71c8b77ac939bab67bafbbf8f8b Mon Sep 17 00:00:00 2001 From: Ray Greenwell Date: Thu, 19 Aug 2004 20:59:06 +0000 Subject: [PATCH] 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 --- .../threerings/crowd/chat/client/MuteDirector.java | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/src/java/com/threerings/crowd/chat/client/MuteDirector.java b/src/java/com/threerings/crowd/chat/client/MuteDirector.java index f6831f749..06ed4e4ac 100644 --- a/src/java/com/threerings/crowd/chat/client/MuteDirector.java +++ b/src/java/com/threerings/crowd/chat/client/MuteDirector.java @@ -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;