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(); } }