From 93960bc4fb0d1a01e0b74ac30788254e09ef5caf Mon Sep 17 00:00:00 2001 From: jmoenig Date: Mon, 14 Oct 2013 17:03:56 +0200 Subject: [PATCH] Increase maximum clone count from 128 to 300 --- history.txt | 1 + objects.js | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/history.txt b/history.txt index 139f5d30..55086167 100755 --- a/history.txt +++ b/history.txt @@ -1958,3 +1958,4 @@ ______ 131014 ------ * Morphic: Condense damage list by merging overlapping dirty rectangles +* Objects: Increase maximum clone count from 128 to 300 diff --git a/objects.js b/objects.js index 74ea20c7..7eb7eb6c 100644 --- a/objects.js +++ b/objects.js @@ -124,7 +124,7 @@ PrototypeHatBlockMorph*/ // Global stuff //////////////////////////////////////////////////////// -modules.objects = '2013-October-08'; +modules.objects = '2013-October-14'; var SpriteMorph; var StageMorph; @@ -2339,7 +2339,7 @@ SpriteMorph.prototype.createClone = function () { hats, stage = this.parentThatIsA(StageMorph); if (stage) { - if (stage.cloneCount > 128) {return; } + if (stage.cloneCount > 300) {return; } stage.cloneCount += 1; clone = this.fullCopy(); clone.isClone = true;