From 4a452876fff4ee1487aad81feccf5fc826d3e66d Mon Sep 17 00:00:00 2001 From: Dev Date: Tue, 21 May 2024 20:18:09 +0100 Subject: [PATCH] Fixed incorrect `DisablePvEPatch` tooltip text --- project/SPT.Custom/Patches/DisablePvEPatch.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/SPT.Custom/Patches/DisablePvEPatch.cs b/project/SPT.Custom/Patches/DisablePvEPatch.cs index cc56b94..4864773 100644 --- a/project/SPT.Custom/Patches/DisablePvEPatch.cs +++ b/project/SPT.Custom/Patches/DisablePvEPatch.cs @@ -21,7 +21,7 @@ namespace SPT.Custom.Patches private static bool PatchPrefix(ESessionMode sessionMode, Profile profile, ref GameObject ____notAvailableState) { ____notAvailableState.SetActive(true); - Object.FindObjectsOfType().Where(o => o.name == "Locked").SingleOrDefault()?.SetMessageText("SPT-SPT is already PvE."); + Object.FindObjectsOfType().Where(o => o.name == "Locked").SingleOrDefault()?.SetMessageText("SPT is already PvE."); return false; }