mirror of https://github.com/hykilpikonna/AquaDX
15 lines
270 B
C#
15 lines
270 B
C#
![]() |
using HarmonyLib;
|
|||
|
|
|||
|
namespace AquaMai.Fix;
|
|||
|
|
|||
|
public class ForceFreePlay
|
|||
|
{
|
|||
|
[HarmonyPrefix]
|
|||
|
[HarmonyPatch(typeof(Manager.Credit), "IsFreePlay")]
|
|||
|
private static bool PreIsFreePlay(ref bool __result)
|
|||
|
{
|
|||
|
__result = true;
|
|||
|
return false;
|
|||
|
}
|
|||
|
}
|