diff --git a/src/as/com/threerings/io/TypedArray.as b/src/as/com/threerings/io/TypedArray.as index 6246615bd..d3e15df19 100644 --- a/src/as/com/threerings/io/TypedArray.as +++ b/src/as/com/threerings/io/TypedArray.as @@ -58,7 +58,7 @@ public dynamic class TypedArray extends Array public function addAll (other :Array) :void { for (var ii :int = 0; ii < other.length; ii++) { - this[ii] = other[ii]; + push(other[ii]); } }