diff --git a/src/as/com/threerings/stage/data/StageLocation.as b/src/as/com/threerings/stage/data/StageLocation.as index a479fb01..2d04a48b 100644 --- a/src/as/com/threerings/stage/data/StageLocation.as +++ b/src/as/com/threerings/stage/data/StageLocation.as @@ -66,7 +66,11 @@ public class StageLocation extends SimpleStreamableObject public function clone () :Object { - return (ClassUtil.newInstance(this) as StageLocation); + var newLoc :StageLocation = (ClassUtil.newInstance(this) as StageLocation); + newLoc.x = x; + newLoc.y = y; + newLoc.orient = orient; + return newLoc; } /**