update readme

This commit is contained in:
Cameron Smart
2020-04-26 01:15:54 -07:00
parent 31d5ef8029
commit 8ba737a7da
2 changed files with 4 additions and 1 deletions

View File

@@ -16,4 +16,4 @@ This game can be setup and run with:
## Instructions
Use WASD to move and the mouse to aim and fire.
Use left shift to cycle through different monster combinations and try to shoot the monsters in that order.
Use left shift to cycle through different monster combinations and try to shoot the monsters in that order to recieve a speed boost. Once all the monsters are gone you will move onto another level.

View File

@@ -227,6 +227,9 @@ class Game(arcade.Window):
def on_update(self, delta_time):
""" Movement and game logic """
if len(self.enemy_list) == 0 and len(self.active_enemies)==0:
self.setup()
# Update Mobs
self.Mobs.update()