diff options
Diffstat (limited to 'bubbob/ext3/__init__.py')
-rw-r--r-- | bubbob/ext3/__init__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bubbob/ext3/__init__.py b/bubbob/ext3/__init__.py index f5408c1..e5f91c8 100644 --- a/bubbob/ext3/__init__.py +++ b/bubbob/ext3/__init__.py @@ -128,8 +128,8 @@ class Shot(Bubble): class Alien(monsters.Monster): ANGLES = 32 SPEED = 5 - ANGLE_TABLE = [(SPEED * math.cos(a*2.0*math.pi/ANGLES), - -SPEED * math.sin(a*2.0*math.pi/ANGLES)) + ANGLE_TABLE = [(5 * math.cos(a*2.0*math.pi/32), + -5 * math.sin(a*2.0*math.pi/32)) for a in range(ANGLES)] touchable = 0 |