Streaming error found.

git-svn-id: svn+ssh://src.earth.threerings.net/vilya/trunk@77 c613c5cb-e716-0410-b11b-feb51c14d237
This commit is contained in:
Ray Greenwell
2006-09-26 00:51:54 +00:00
parent d673b120be
commit 4364576283
@@ -56,7 +56,7 @@ public class TableConfig
{ {
out.writeInt(desiredPlayerCount); out.writeInt(desiredPlayerCount);
out.writeInt(minimumPlayerCount); out.writeInt(minimumPlayerCount);
out.writeField(teamMemberIndices); out.writeObject(teamMemberIndices);
out.writeBoolean(privateTable); out.writeBoolean(privateTable);
} }
@@ -65,7 +65,7 @@ public class TableConfig
{ {
desiredPlayerCount = ins.readInt(); desiredPlayerCount = ins.readInt();
minimumPlayerCount = ins.readInt(); minimumPlayerCount = ins.readInt();
teamMemberIndices = (ins.readField("[[I") as TypedArray); teamMemberIndices = (ins.readObject() as TypedArray);
privateTable = ins.readBoolean(); privateTable = ins.readBoolean();
} }
} }