From 3738b8d46d9d4dec42beff2c22a85a4fc099f4fd Mon Sep 17 00:00:00 2001 From: zombieb Date: Sat, 4 Oct 2025 19:56:12 -0400 Subject: [PATCH] not first try.... sob emoji., --- Plugin.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Plugin.cs b/Plugin.cs index b1115d9..a0933a3 100644 --- a/Plugin.cs +++ b/Plugin.cs @@ -11,12 +11,16 @@ namespace AlwaysRecFace; [BepInPlugin("dev.proxnet.recroom.alwaysrecface", "AlwaysRecFace", "1.0.0")] public class Plugin : BasePlugin { - internal static new ManualLogSource Log; + internal static new ManualLogSource Log = new("ARF"); + internal static Harmony _hi = new("dev.proxnet.recroom.alwaysrecface"); + public override void Load() { Log = base.Log; Log.LogInfo($"Always RecFace on loading screen."); + + _hi.PatchAll(); } }