[+] Fixes required to run SDGA

This commit is contained in:
Clansty
2024-07-09 18:11:06 +08:00
parent 60a0c8726e
commit c6e471323f
7 changed files with 102 additions and 2 deletions

View File

@@ -0,0 +1,16 @@
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;
}
}
}