diff --git a/src/as/com/threerings/crowd/data/OccupantInfo.as b/src/as/com/threerings/crowd/data/OccupantInfo.as index 5a51a303f..c8586b6ea 100644 --- a/src/as/com/threerings/crowd/data/OccupantInfo.as +++ b/src/as/com/threerings/crowd/data/OccupantInfo.as @@ -118,10 +118,11 @@ public class OccupantInfo extends SimpleStreamableObject // from interface Streamable override public function writeObject (out :ObjectOutputStream) :void { - super.writeObject(out); - out.writeObject(new Integer(bodyOid)); - out.writeObject(username); - out.writeByte(status); + throw new Error(); +// super.writeObject(out); +// out.writeObject(new Integer(bodyOid)); +// out.writeObject(username); +// out.writeByte(status); } } }