Skip to content

Commit

Permalink
Fix the altitude of where thiefs are jumping
Browse files Browse the repository at this point in the history
  • Loading branch information
flavioribeiro committed Oct 20, 2010
1 parent 1a04eea commit 82a93d5
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions jailbreakerz/game.py
Expand Up @@ -61,8 +61,6 @@ def load_catcher(self):

def load_scenario(self):
self.background = Background()
# self.background = Sprite('media/imgs/background.png')
# self.background.position = 0,0
self.add(self.background)

self.prison = Sprite('media/imgs/prison.png')
Expand All @@ -85,7 +83,7 @@ def __init__(self, *args, **kwargs):
self.thief_type = random.choice(thiefs.items())
self.thief = Sprite(self.thief_type[1])
self.thief.alive = True
self.thief.position = 100, 190
self.thief.position = 100, 340
self.add(self.thief)
self.fall()

Expand Down

0 comments on commit 82a93d5

Please sign in to comment.