summaryrefslogtreecommitdiff
path: root/objects.js
diff options
context:
space:
mode:
authorCode WvS <code-wvs@quantentunnel.de>2015-02-27 08:57:35 +0100
committerCode WvS <code-wvs@quantentunnel.de>2015-02-27 08:57:35 +0100
commit3a24c17975d6125ac3cc59b3ea325e8f4d347bfd (patch)
tree54bcd6030d8a4e03bd13dff36ea07fd56546139b /objects.js
parentc71147a2fccf5d6ebd8a1eabd41e10b134248070 (diff)
parent662a743f4ed564f2c296e2370c555ca44e12116d (diff)
downloadsnap-yow-3a24c17975d6125ac3cc59b3ea325e8f4d347bfd.tar.gz
snap-yow-3a24c17975d6125ac3cc59b3ea325e8f4d347bfd.zip
Merge branch 'master'
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 3ea2879..433ce4b 100644
--- a/objects.js
+++ b/objects.js
@@ -125,7 +125,7 @@ PrototypeHatBlockMorph*/
// Global stuff ////////////////////////////////////////////////////////
-modules.objects = '2015-January-21';
+modules.objects = '2015-January-28';
var SpriteMorph;
var StageMorph;
@@ -2797,7 +2797,7 @@ SpriteMorph.prototype.setColor = function (aColor) {
var x = this.xPosition(),
y = this.yPosition();
if (!this.color.eq(aColor)) {
- this.color = aColor;
+ this.color = aColor.copy();
this.drawNew();
this.gotoXY(x, y);
}