Muse Dash: Fix bad generations occuring due to changing item ids (#2122)

This commit is contained in:
Justus Lind
2023-08-30 04:58:34 +10:00
committed by GitHub
parent aa19a79d26
commit 9d29c6d301
9 changed files with 105 additions and 99 deletions

View File

@@ -8,10 +8,9 @@ class SongData(NamedTuple):
code: Optional[int]
song_is_free: bool
streamer_mode: bool
easy: str = Optional[int]
hard: int = Optional[int]
master: int = Optional[int]
secret: int = Optional[int]
easy: Optional[int]
hard: Optional[int]
master: Optional[int]
class AlbumData(NamedTuple):