Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/taproject.py
diff options
context:
space:
mode:
authorWalter Bender <walter@walter-laptop.(none)>2010-01-21 15:05:11 (GMT)
committer Walter Bender <walter@walter-laptop.(none)>2010-01-21 15:05:11 (GMT)
commit5fb4e26f2329c8522047fb13a9f4975b309ce7d8 (patch)
treec8f6a5509eb7ee7ccaece0e074cfe0fc24ba0c18 /taproject.py
parente072a53788f8f4b738f54d85565ac2377cfa2893 (diff)
fixed findsprite bug
Diffstat (limited to 'taproject.py')
-rw-r--r--taproject.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/taproject.py b/taproject.py
index f550dd6..2b1db79 100644
--- a/taproject.py
+++ b/taproject.py
@@ -52,6 +52,7 @@ except:
pass
import block
import sprites
+from constants import *
nolabel = ['audiooff', 'descriptionoff', 'journal']
shape_dict = {'journal':'texton', \
@@ -192,7 +193,7 @@ def load_spr(tw,b):
except:
if hasattr(spr,"ds_id"):
print "couldn't open dsobject (" + str(spr.ds_id) + ")"
- spr.set_layer(650)
+ spr.set_layer(BLOCK_LAYER)
return spr
def load_turtle(tw,b):