Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/addons/bubblemessage.py
diff options
context:
space:
mode:
Diffstat (limited to 'addons/bubblemessage.py')
-rw-r--r--addons/bubblemessage.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/addons/bubblemessage.py b/addons/bubblemessage.py
index 0e75dc4..eb82ea3 100644
--- a/addons/bubblemessage.py
+++ b/addons/bubblemessage.py
@@ -19,9 +19,8 @@ class BubbleMessage(Action):
message = TStringProperty("Message")
# Create the position as an array of fixed-size 2
position = TArrayProperty([0,0], 2, 2)
- #postion = TPositionProperty((0,0)) May be it will be not possible to modify the position with a TPositionProperty.
#Create a list of tail positions as an array of N element : N to be defined...
- tail_pos = TArrayOneTypeProperty([[0,0],[0,0],[0,0]], 2, 3)
+ tail_pos = TArrayOneTypeProperty([[0,0],[0,0],[0,0]], 3, 3)
def __init__(self, message=None, pos=None, speaker=None, tailpos=None):