diff --git a/triple-dungeon/README.md b/triple-dungeon/README.md index d3dd98d..d6bd49c 100644 --- a/triple-dungeon/README.md +++ b/triple-dungeon/README.md @@ -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. diff --git a/triple-dungeon/main.py b/triple-dungeon/main.py index 7142760..ad2e6ee 100644 --- a/triple-dungeon/main.py +++ b/triple-dungeon/main.py @@ -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()