diff --git a/main.py b/main.py index 0f2a247..b80e13e 100644 --- a/main.py +++ b/main.py @@ -100,7 +100,7 @@ def main(): pygame.display.update(dirty_rects) # Run faster as snake grows - clock.tick(10 - INITIAL_SNAKE_SIZE + len(snake.slots)) + clock.tick(min(30, 10 - INITIAL_SNAKE_SIZE + len(snake.slots))) screen.fill(BACKGROUND_COLOR) @@ -121,7 +121,7 @@ def main(): return if event.type == pglocals.KEYDOWN: if event.key == pglocals.K_r: - logger.debug('Restarting game') + logger.info('Restarting game') restart = True clock.tick(5)