From 1996f3f356e78fd7747ce84f10f845d6b897bb0e Mon Sep 17 00:00:00 2001 From: Midorica Date: Sat, 7 Oct 2023 12:11:24 -0400 Subject: [PATCH] fix for chunithm song loading after 600 scores --- titles/chuni/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/titles/chuni/base.py b/titles/chuni/base.py index 2a6385d..1a7f350 100644 --- a/titles/chuni/base.py +++ b/titles/chuni/base.py @@ -588,7 +588,7 @@ class ChuniBase: if len(song_list) >= max_ct: break - if len(song_list) >= next_idx + max_ct: + if len(music_detail) >= next_idx + max_ct: next_idx += max_ct else: next_idx = -1