diff --git a/bullet.py b/bullet.py index 484c713..09706bb 100644 --- a/bullet.py +++ b/bullet.py @@ -29,4 +29,4 @@ class Bullet: # Reward points for hitting an asteroid game.state["score"] += 10 return - #here \ No newline at end of file + \ No newline at end of file diff --git a/spaceship.py b/spaceship.py index 3b34c83..ef056fd 100644 --- a/spaceship.py +++ b/spaceship.py @@ -49,7 +49,7 @@ class Spaceship: if game.is_empty(new_position): self.position = new_position else: - # We bumped into something (probably an asteroid) + # We bumped into something self.take_damage(game) def take_damage(self, game):