summaryrefslogtreecommitdiff
path: root/blocks.js
diff options
context:
space:
mode:
authorjmoenig <jens@moenig.org>2014-07-08 19:27:10 +0200
committerjmoenig <jens@moenig.org>2014-07-08 19:27:10 +0200
commit2ecdf1c9e453e6ca710dc975ee20455140125094 (patch)
tree5248961b17eed8fc339047e08bbedd4b0c32528c /blocks.js
parent2f864cd7ded2505a7fbbb8c77de48972c95114b4 (diff)
downloadsnap-2ecdf1c9e453e6ca710dc975ee20455140125094.tar.gz
snap-2ecdf1c9e453e6ca710dc975ee20455140125094.zip
fixed #490
Diffstat (limited to 'blocks.js')
-rw-r--r--blocks.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/blocks.js b/blocks.js
index 49eb111..f02001b 100644
--- a/blocks.js
+++ b/blocks.js
@@ -6504,7 +6504,7 @@ InputSlotMorph.prototype.collidablesMenu = function () {
allNames = [];
stage.children.forEach(function (morph) {
- if (morph instanceof SpriteMorph) {
+ if (morph instanceof SpriteMorph && !morph.isClone) {
if (morph.name !== rcvr.name) {
allNames = allNames.concat(morph.name);
}