forked from akanyan/mu3-mods
15 lines
418 B
C#
15 lines
418 B
C#
using MU3.Util;
|
|
|
|
namespace MU3;
|
|
|
|
class patch_Scene_32_PrePlayMusic_MusicSelect: Scene_32_PrePlayMusic_MusicSelect {
|
|
private bool _playVoice;
|
|
private extern void orig_Enter_Select();
|
|
private void Enter_Select() {
|
|
if(Singleton<Mod.State>.instance.SkipPlay) {
|
|
Singleton<Mod.State>.instance.SkipPlay = false;
|
|
_playVoice = false;
|
|
}
|
|
orig_Enter_Select();
|
|
}
|
|
} |