From 43645762835778ec5a27138a77675dc35c8cebdb Mon Sep 17 00:00:00 2001 From: Ray Greenwell Date: Tue, 26 Sep 2006 00:51:54 +0000 Subject: [PATCH] Streaming error found. git-svn-id: svn+ssh://src.earth.threerings.net/vilya/trunk@77 c613c5cb-e716-0410-b11b-feb51c14d237 --- src/as/com/threerings/parlor/data/TableConfig.as | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/as/com/threerings/parlor/data/TableConfig.as b/src/as/com/threerings/parlor/data/TableConfig.as index a85173e7..cd20b11e 100644 --- a/src/as/com/threerings/parlor/data/TableConfig.as +++ b/src/as/com/threerings/parlor/data/TableConfig.as @@ -56,7 +56,7 @@ public class TableConfig { out.writeInt(desiredPlayerCount); out.writeInt(minimumPlayerCount); - out.writeField(teamMemberIndices); + out.writeObject(teamMemberIndices); out.writeBoolean(privateTable); } @@ -65,7 +65,7 @@ public class TableConfig { desiredPlayerCount = ins.readInt(); minimumPlayerCount = ins.readInt(); - teamMemberIndices = (ins.readField("[[I") as TypedArray); + teamMemberIndices = (ins.readObject() as TypedArray); privateTable = ins.readBoolean(); } }