forked from Cookies_Public/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;
|
|
}
|
|
}
|