forked from akanyan/mu3-mods
12 lines
293 B
C#
12 lines
293 B
C#
using MU3.User;
|
|
using MU3.Util;
|
|
|
|
namespace MU3.Sequence;
|
|
|
|
class patch_Play: Play {
|
|
private extern void orig_Enter_PlayScenario();
|
|
private void Enter_PlayScenario() {
|
|
orig_Enter_PlayScenario();
|
|
Singleton<UserManager>.instance.userLocal.isStoryWatched = false;
|
|
}
|
|
} |