We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7f5b94 commit b03bef6Copy full SHA for b03bef6
game/game.py
@@ -84,7 +84,7 @@ def update(self):
84
if self.game_mode == "waves" and time.perf_counter() - self.player.last_wave_time >= self.player.wave_time:
85
self.game_over()
86
87
- if self.game_mode == "1 minute test" and time.perf_counter() - self.player.test_start >= 1:
+ if self.game_mode == "1 minute test" and time.perf_counter() - self.player.test_start >= 60:
88
89
90
if self.game_mode == r"100% accuracy test" and self.player.shots_fired - self.player.shots_hit >= 1:
0 commit comments