From b4f0874bb95df13d219ac3ddef92dd5b8f7697ab Mon Sep 17 00:00:00 2001 From: Justus Lind Date: Fri, 29 Dec 2023 20:44:06 +1000 Subject: [PATCH] Increase the max amount of songs now that we have 512 songs --- worlds/musedash/Options.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/worlds/musedash/Options.py b/worlds/musedash/Options.py index 3fe28187fae6..d5ce313f8f03 100644 --- a/worlds/musedash/Options.py +++ b/worlds/musedash/Options.py @@ -36,7 +36,7 @@ class AdditionalSongs(Range): - The final song count may be lower due to other settings. """ range_start = 15 - range_end = 500 # Note will probably not reach this high if any other settings are done. + range_end = 508 # Note will probably not reach this high if any other settings are done. default = 40 display_name = "Additional Song Count"