diff --git a/AquaMai/UX/HideSelfMadeCharts.cs b/AquaMai/UX/HideSelfMadeCharts.cs index 625e0e58..288b75db 100644 --- a/AquaMai/UX/HideSelfMadeCharts.cs +++ b/AquaMai/UX/HideSelfMadeCharts.cs @@ -77,4 +77,12 @@ public class HideSelfMadeCharts _keyPressFrames = 0; } } + + [HarmonyPostfix] + [HarmonyPatch(typeof(EntryProcess), "OnStart")] + public static void EntryProcessOnStart(ref EntryProcess __instance) + { + // reset status on login + isShowSelfMadeCharts = true; + } }