Quick hack to (hopefully) fix weird problem while I investigate.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@2607 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2003-05-24 01:50:33 +00:00
parent 3bacbbe803
commit 8d9b9f69d2
@@ -1,5 +1,5 @@
// //
// $Id: PresentsClient.java,v 1.55 2003/04/10 18:12:16 mdb Exp $ // $Id: PresentsClient.java,v 1.56 2003/05/24 01:50:33 mdb Exp $
package com.threerings.presents.server; package com.threerings.presents.server;
@@ -655,7 +655,13 @@ public class PresentsClient
// documentation inherited from interface // documentation inherited from interface
public void eventReceived (DEvent event) public void eventReceived (DEvent event)
{ {
postMessage(new EventNotification(event)); if (event instanceof PresentsDObjectMgr.AccessObjectEvent) {
Log.warning("Ignoring event that shouldn't be forwarded " +
event + ".");
Thread.dumpStack();
} else {
postMessage(new EventNotification(event));
}
} }
/** Queues a message for delivery to the client. */ /** Queues a message for delivery to the client. */