don't skip games

This commit is contained in:
2026-05-05 17:53:17 -04:00
parent dd644bc38c
commit 245ef271c0
+1 -1
View File
@@ -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