From ab8406806e725564592016fc9463e269d7f43998 Mon Sep 17 00:00:00 2001 From: Ray Greenwell Date: Fri, 27 Mar 2009 22:46:11 +0000 Subject: [PATCH] The quick fix: It was never intended that there'd be two goddamn ChatDirectors in a client. The slow fix: Maybe I can fix _that_. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5702 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- src/as/com/threerings/crowd/chat/client/ChatDirector.as | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/as/com/threerings/crowd/chat/client/ChatDirector.as b/src/as/com/threerings/crowd/chat/client/ChatDirector.as index a9ffb2f8e..7bd7c23eb 100644 --- a/src/as/com/threerings/crowd/chat/client/ChatDirector.as +++ b/src/as/com/threerings/crowd/chat/client/ChatDirector.as @@ -1068,10 +1068,10 @@ public class ChatDirector extends BasicDirector protected var _chatterObservers :ObserverList = new ObserverList(); /** Registered chat command handlers. */ - protected static const _handlers :HashMap = new HashMap(); + protected const _handlers :HashMap = new HashMap(); /** A history of chat commands. */ - protected static const _history :Array = new Array(); + protected const _history :Array = new Array(); /** The maximum number of chatter usernames to track. */ protected static const MAX_CHATTERS :int = 6;