[F] SinglePlayer compatibility with 1.09.00

pull/78/head
Clansty 2024-10-28 00:04:43 +08:00
parent 36da872932
commit de3d376063
No known key found for this signature in database
GPG Key ID: 3A6BE8BAF2EDE134
1 changed files with 23 additions and 18 deletions

View File

@ -1,5 +1,6 @@
using System.Collections.Generic;
using System.Reflection;
using AquaMai.Attributes;
using HarmonyLib;
using MAI2.Util;
using Manager;
@ -42,6 +43,9 @@ namespace AquaMai.UX
return false;
}
[GameVersion(21500)]
public class SkipTimer
{
[HarmonyPostfix]
[HarmonyPatch(typeof(EntryMonitor), "DecideEntry")]
public static void PostDecideEntry(EntryMonitor __instance)
@ -64,4 +68,5 @@ namespace AquaMai.UX
return false;
}
}
}
}