From b8d08b3d84db407468bc3486f1a637914231136a Mon Sep 17 00:00:00 2001 From: Dev Date: Mon, 8 Jul 2024 14:57:24 +0100 Subject: [PATCH] Renamed patch to something more suitable --- ...aidMenuPatch.cs => SetPreRaidSettingsScreenDefaultsPatch.cs} | 2 +- project/SPT.Custom/SPTCustomPlugin.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename project/SPT.Custom/Patches/{OfflineRaidMenuPatch.cs => SetPreRaidSettingsScreenDefaultsPatch.cs} (97%) diff --git a/project/SPT.Custom/Patches/OfflineRaidMenuPatch.cs b/project/SPT.Custom/Patches/SetPreRaidSettingsScreenDefaultsPatch.cs similarity index 97% rename from project/SPT.Custom/Patches/OfflineRaidMenuPatch.cs rename to project/SPT.Custom/Patches/SetPreRaidSettingsScreenDefaultsPatch.cs index be6994d..4f02472 100644 --- a/project/SPT.Custom/Patches/OfflineRaidMenuPatch.cs +++ b/project/SPT.Custom/Patches/SetPreRaidSettingsScreenDefaultsPatch.cs @@ -11,7 +11,7 @@ using SPT.Reflection.Utils; namespace SPT.Custom.Patches { - public class OfflineRaidMenuPatch : ModulePatch + public class SetPreRaidSettingsScreenDefaultsPatch : ModulePatch { protected override MethodBase GetTargetMethod() { diff --git a/project/SPT.Custom/SPTCustomPlugin.cs b/project/SPT.Custom/SPTCustomPlugin.cs index caa7d67..9ed1cc1 100644 --- a/project/SPT.Custom/SPTCustomPlugin.cs +++ b/project/SPT.Custom/SPTCustomPlugin.cs @@ -51,7 +51,7 @@ namespace SPT.Custom new ClampRagdollPatch().Enable(); new PMCSpawnParamPatch().Enable(); new InsurancePlaceItem().Enable(); - new OfflineRaidMenuPatch().Enable(); + new SetPreRaidSettingsScreenDefaultsPatch().Enable(); new CoreDifficultyPatch().Enable(); new BotDifficultyPatch().Enable(); new BossSpawnChancePatch().Enable();