forked from akanyan/mu3-mods
Also set HideVersion default to false Also fix the new skipper crashing on tutorial
17 lines
421 B
C#
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();
|
|
}
|
|
} |