mirror of
https://github.com/MewoLab/AquaDX.git
synced 2026-02-11 01:07:28 +08:00
[+] Change every timer to 200 seconds
This commit is contained in:
14
AquaMai/UX/ExtendTimer.cs
Normal file
14
AquaMai/UX/ExtendTimer.cs
Normal 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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user