Bullets are now on top of targets
This commit is contained in:
parent
1b44b11144
commit
07ecced10b
1 changed files with 1 additions and 1 deletions
2
game.py
2
game.py
|
@ -169,8 +169,8 @@ def play(window, options):
|
||||||
update_level(window, player.level)
|
update_level(window, player.level)
|
||||||
update_lives(window, player.lives)
|
update_lives(window, player.lives)
|
||||||
|
|
||||||
bullet_group.draw(window)
|
|
||||||
target_group.draw(window)
|
target_group.draw(window)
|
||||||
|
bullet_group.draw(window)
|
||||||
player_group.draw(window)
|
player_group.draw(window)
|
||||||
|
|
||||||
for key, value in timeouts.items():
|
for key, value in timeouts.items():
|
||||||
|
|
Reference in a new issue