1
0
forked from akanyan/mu3-mods

fix: misc cleanup

Also set HideVersion default to false
Also fix the new skipper crashing on tutorial
This commit is contained in:
2024-12-21 13:55:36 +00:00
parent adb7955875
commit 25ca07edd6
28 changed files with 59 additions and 70 deletions

View File

@ -4,6 +4,7 @@ using MU3.Util;
using MU3.ViewData;
namespace MU3;
class patch_Scene_32_PrePlayMusic_ChapterSelect: Scene_32_PrePlayMusic_ChapterSelect {
private ChapterSelectorItemViewData _selectItemViewData;
private extern void orig_onChangeElement(int index, int indexRaw);
@ -13,9 +14,7 @@ class patch_Scene_32_PrePlayMusic_ChapterSelect: Scene_32_PrePlayMusic_ChapterSe
patch_GameBGM.WithholdPlay = false;
int selectorID = (
(_selectItemViewData.memoryChapterViewData == null)
? null
: _selectItemViewData.memoryChapterViewData.memoryChapterData
_selectItemViewData.memoryChapterViewData?.memoryChapterData
)?.getMemoryChapterSelectorID() ?? patch_Play.RecentID;
Singleton<GameSound>.instance.gameBGM.playBGM(233, selectorID);
}