1
0
forked from akanyan/mu3-mods
Files
mu3-mods/UnlockAndSetJewelBoostNine/MU3/patch_Scene_32_PrePlayMusic_Confirm.cs
akanyan 25ca07edd6 fix: misc cleanup
Also set HideVersion default to false
Also fix the new skipper crashing on tutorial
2024-12-21 13:55:36 +00:00

17 lines
421 B
C#

using MU3.DB;
using MU3.User;
using MU3.Util;
namespace MU3;
class patch_Scene_32_PrePlayMusic_Confirm: Scene_32_PrePlayMusic_Confirm {
private JewelBoostID getMaxBoost() {
return JewelBoostID.Nine;
}
private extern void orig_createSelector();
private void createSelector() {
Singleton<UserManager>.instance.userLocal.boost = JewelBoostID.Nine;
orig_createSelector();
}
}