diff --git a/src/as/com/threerings/cast/ComponentDataPack.as b/src/as/com/threerings/cast/ComponentDataPack.as index 6b0db1fe..e5bfdad8 100644 --- a/src/as/com/threerings/cast/ComponentDataPack.as +++ b/src/as/com/threerings/cast/ComponentDataPack.as @@ -103,7 +103,8 @@ public class ComponentDataPack extends TileDataPack aset = TileSet(actseq.tileset.clone()); aset.setImagePath(cpath); } else if (_zip.getEntry(dpath)) { - aset = TileSet(TileSet(_actions.get(ActionSequence.DEFAULT_SEQUENCE)).clone()); + actseq = _actions.get(ActionSequence.DEFAULT_SEQUENCE); + aset = TileSet(actseq.tileset.clone()); aset.setImagePath(dpath); _setcache.put(dpath, aset); }