-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathController.cs
43 lines (40 loc) · 1.04 KB
/
Controller.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
using HarmonyLib;
namespace DarkwoodCustomizer;
internal class ControllerPatch
{
[HarmonyPatch(typeof(Controller), nameof(Controller.refreshTime))]
[HarmonyPostfix]
public static void PatchTime(Controller __instance)
{
if (Plugin.TimeModification.Value)
{
if (Plugin.TimeStop.Value)
{
__instance.CurrentTime -= 1;
}
if (Plugin.UseCurrentTime.Value)
{
__instance.CurrentTime = Plugin.CurrentTime.Value;
}
if (Plugin.ResetWell.Value)
{
Player.Instance.fedToday = false;
}
}
}
[HarmonyPatch(typeof(Controller), nameof(Controller.setTimeChangeInterval))]
[HarmonyPostfix]
public static void PatchTimeInterval(Controller __instance)
{
// Lower value is slower time interval
if (Plugin.TimeModification.Value)
{
if (__instance.CurrentTime < __instance.nightTime)
{
__instance.timeChangeInterval = Plugin.DaytimeFlow.Value;
return;
}
__instance.timeChangeInterval = Plugin.NighttimeFlow.Value;
}
}
}