[+] Change every timer to 200 seconds

This commit is contained in:
Clansty
2024-05-21 21:17:30 +08:00
parent f106a31990
commit 2251350a4e
4 changed files with 18 additions and 0 deletions

14
AquaMai/UX/ExtendTimer.cs Normal file
View File

@@ -0,0 +1,14 @@
using HarmonyLib;
namespace AquaMai.UX
{
public class ExtendTimer
{
[HarmonyPrefix]
[HarmonyPatch(typeof(TimerController), "PrepareTimer")]
public static void PrePrepareTimer(ref int second)
{
second = 200;
}
}
}