From 6179c6b3082b1c32180282fb200ad6a62c341d04 Mon Sep 17 00:00:00 2001 From: Dev Date: Fri, 14 Jun 2024 19:31:07 +0100 Subject: [PATCH] Fixed patch not targeting correct method --- project/SPT.Custom/Patches/BetaLogoPatch.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/SPT.Custom/Patches/BetaLogoPatch.cs b/project/SPT.Custom/Patches/BetaLogoPatch.cs index 290b368..b43a885 100644 --- a/project/SPT.Custom/Patches/BetaLogoPatch.cs +++ b/project/SPT.Custom/Patches/BetaLogoPatch.cs @@ -13,7 +13,7 @@ namespace SPT.SinglePlayer.Patches.MainMenu { protected override MethodBase GetTargetMethod() { - return AccessTools.Method(typeof(TarkovApplication), nameof(TarkovApplication.method_31)); + return AccessTools.Method(typeof(TarkovApplication), nameof(TarkovApplication.method_30)); } [PatchPrefix]