1
0
forked from akanyan/mu3-mods

fix(UnlockAllMusic): don't unlock the tutorial

This commit is contained in:
2024-12-28 21:11:28 +00:00
parent 566d17c230
commit 1abdc51dd0

View File

@ -10,7 +10,8 @@ class patch_MusicData: MusicData {
public new bool PossessingFromTheBeginning { public new bool PossessingFromTheBeginning {
get { get {
return true; // 1=Tutorial
return Name.id != 1;
} }
private set { /* nop */ } private set { /* nop */ }
} }