aboutsummaryrefslogtreecommitdiff
path: root/behaviors/Expand.py
diff options
context:
space:
mode:
Diffstat (limited to 'behaviors/Expand.py')
-rw-r--r--behaviors/Expand.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/behaviors/Expand.py b/behaviors/Expand.py
index 323e71f..f017c16 100644
--- a/behaviors/Expand.py
+++ b/behaviors/Expand.py
@@ -15,7 +15,8 @@ class Expand(Behavior):
data = dict(data)
data['Left'] -= data['ExpandRate']
data['Right'] += data['ExpandRate']
- data['Location'] = "{x}>" + str(data['Left']) + ", {x}<" + str(data['Right'])
+ data['Location'] = "{x}>" + str(data['Left']) + ", {x}<" +\
+ str(data['Right'])+", {y}<50"
ret.append(data)
return (ret, [])