mirror of https://github.com/hykilpikonna/AquaDX
16 lines
306 B
C#
16 lines
306 B
C#
![]() |
using HarmonyLib;
|
|||
|
using Monitor;
|
|||
|
|
|||
|
namespace AquaMai.TimeSaving;
|
|||
|
|
|||
|
public class IWontTapOrSlideVigorously
|
|||
|
{
|
|||
|
[HarmonyPrefix]
|
|||
|
[HarmonyPatch(typeof(PlInformationMonitor), "IsPlayPlInfoEnd")]
|
|||
|
public static bool Patch(ref bool __result)
|
|||
|
{
|
|||
|
__result = true;
|
|||
|
return false;
|
|||
|
}
|
|||
|
}
|