Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--TurtleArt/tawindow.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/TurtleArt/tawindow.py b/TurtleArt/tawindow.py
index a8b23fa..dcb43a5 100644
--- a/TurtleArt/tawindow.py
+++ b/TurtleArt/tawindow.py
@@ -1564,7 +1564,10 @@ class TurtleArtWindow():
if blk.connections[0] is None:
return False
if storein and blk.connections[0].name == 'storein':
- return True
+ if blk.connections[0].connections[1] == blk:
+ return True
+ else:
+ return False
if not storein and blk.connections[0].name == 'box':
return True
return False