Skip to content

Commit

Permalink
Bugfix, s/move/update
Browse files Browse the repository at this point in the history
  • Loading branch information
bmaland committed Jan 2, 2011
1 parent 87631bd commit 26e0048
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spaceswarm.py
Expand Up @@ -166,7 +166,7 @@ def _new_destination(self):
break

def update(self, time_passed):
super(Alien, self).move(time_passed)
super(Alien, self).update(time_passed)
lv = Vector2(self.rect.x, self.rect.y)
dv = Vector2(self.destination)
if lv.get_distance_to(dv) < 2:
Expand Down

0 comments on commit 26e0048

Please sign in to comment.