mirror of https://github.com/hykilpikonna/AquaDX
17 lines
340 B
C#
17 lines
340 B
C#
![]() |
using HarmonyLib;
|
||
|
using Process.Entry.State;
|
||
|
|
||
![]() |
namespace AquaMai.Fix
|
||
![]() |
{
|
||
|
public class SkipVersionCheck
|
||
|
{
|
||
|
[HarmonyPrefix]
|
||
|
[HarmonyPatch(typeof(ConfirmPlay), "IsValidVersion")]
|
||
|
public static bool IsValidVersion(ref bool __result)
|
||
|
{
|
||
|
__result = true;
|
||
|
return false;
|
||
|
}
|
||
|
}
|
||
|
}
|