From 245ef271c0f5e6fab6c10016b9bd17eb23e8a214 Mon Sep 17 00:00:00 2001 From: Alex Frantz Date: Tue, 5 May 2026 17:53:17 -0400 Subject: [PATCH] don't skip games --- scoreboard.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scoreboard.py b/scoreboard.py index 301f05d..d9029d8 100644 --- a/scoreboard.py +++ b/scoreboard.py @@ -401,7 +401,7 @@ def run(): print(show_preferred, show_cycle, current_preferred_game, len(preferred_games)) if show_preferred == True and len(preferred_games) > 0: current_preferred_game += 1 - if current_preferred_game >= len(preferred_games): + if current_preferred_game >= len(preferred_games) - 1: show_preferred = False show_cycle = True current_preferred_game -= 1