From f9a03928411f79a907e1dff4276fc391bd99fb5f Mon Sep 17 00:00:00 2001 From: Ray Greenwell Date: Tue, 8 Aug 2006 22:41:48 +0000 Subject: [PATCH] Bugfix. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4305 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- .../threerings/presents/dobj/InvocationNotificationEvent.as | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/as/com/threerings/presents/dobj/InvocationNotificationEvent.as b/src/as/com/threerings/presents/dobj/InvocationNotificationEvent.as index 85f27d2c3..79a80f8c4 100644 --- a/src/as/com/threerings/presents/dobj/InvocationNotificationEvent.as +++ b/src/as/com/threerings/presents/dobj/InvocationNotificationEvent.as @@ -23,6 +23,7 @@ package com.threerings.presents.dobj { import com.threerings.io.ObjectInputStream; import com.threerings.io.ObjectOutputStream; +import com.threerings.io.TypedArray; import com.threerings.util.StringBuilder; @@ -113,7 +114,7 @@ public class InvocationNotificationEvent extends DEvent super.writeObject(out); out.writeShort(_receiverId); out.writeByte(_methodId); - out.writeObject(_args); + out.writeField(_args); } // documentation inherited @@ -122,7 +123,7 @@ public class InvocationNotificationEvent extends DEvent super.readObject(ins); _receiverId = ins.readShort(); _methodId = ins.readByte(); - _args = (ins.readObject() as Array); + _args = (ins.readField(Array) as Array); } /** Identifies the receiver to which this notification is being