summaryrefslogtreecommitdiff
path: root/objects.js
diff options
context:
space:
mode:
authorjmoenig <jens@moenig.org>2013-10-14 17:03:56 +0200
committerjmoenig <jens@moenig.org>2013-10-14 17:03:56 +0200
commit93960bc4fb0d1a01e0b74ac30788254e09ef5caf (patch)
treee20f683a96743f648fd8cef71480224d650a791b /objects.js
parentf3b8d8dcef97adec7d6a93b3dfda799515b5723f (diff)
downloadsnap-93960bc4fb0d1a01e0b74ac30788254e09ef5caf.tar.gz
snap-93960bc4fb0d1a01e0b74ac30788254e09ef5caf.zip
Increase maximum clone count from 128 to 300
Diffstat (limited to 'objects.js')
-rw-r--r--objects.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/objects.js b/objects.js
index 74ea20c..7eb7eb6 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;