diff --git a/project/SPT.Custom/Patches/ScavQuestPatch.cs b/project/SPT.Custom/Patches/CopyPmcQuestsToPlayerScavPatch.cs similarity index 95% rename from project/SPT.Custom/Patches/ScavQuestPatch.cs rename to project/SPT.Custom/Patches/CopyPmcQuestsToPlayerScavPatch.cs index 6b537f7..603bf11 100644 --- a/project/SPT.Custom/Patches/ScavQuestPatch.cs +++ b/project/SPT.Custom/Patches/CopyPmcQuestsToPlayerScavPatch.cs @@ -11,7 +11,7 @@ namespace SPT.Custom.Patches /// Copy over scav-only quests from PMC profile to scav profile on pre-raid screen /// Allows scavs to see and complete quests /// - public class ScavQuestPatch : ModulePatch + public class CopyPmcQuestsToPlayerScavPatch : ModulePatch { protected override MethodBase GetTargetMethod() { diff --git a/project/SPT.Custom/Patches/HalloweenExtractPatch.cs b/project/SPT.Custom/Patches/DisableNonHalloweenExitsDuringEventPatch.cs similarity index 95% rename from project/SPT.Custom/Patches/HalloweenExtractPatch.cs rename to project/SPT.Custom/Patches/DisableNonHalloweenExitsDuringEventPatch.cs index 1669a8b..86844d5 100644 --- a/project/SPT.Custom/Patches/HalloweenExtractPatch.cs +++ b/project/SPT.Custom/Patches/DisableNonHalloweenExitsDuringEventPatch.cs @@ -10,7 +10,7 @@ using System.Reflection; namespace SPT.Custom.Patches { - public class HalloweenExtractPatch : ModulePatch + public class DisableNonHalloweenExitsDuringEventPatch : ModulePatch { protected override MethodBase GetTargetMethod() { diff --git a/project/SPT.Custom/Patches/ScavItemCheckmarkPatch.cs b/project/SPT.Custom/Patches/MergeScavPmcQuestsOnInventoryLoadPatch.cs similarity index 94% rename from project/SPT.Custom/Patches/ScavItemCheckmarkPatch.cs rename to project/SPT.Custom/Patches/MergeScavPmcQuestsOnInventoryLoadPatch.cs index adfd5ac..d969a27 100644 --- a/project/SPT.Custom/Patches/ScavItemCheckmarkPatch.cs +++ b/project/SPT.Custom/Patches/MergeScavPmcQuestsOnInventoryLoadPatch.cs @@ -11,7 +11,7 @@ using HarmonyLib; namespace SPT.Custom.Patches { - public class ScavItemCheckmarkPatch : ModulePatch + public class MergeScavPmcQuestsOnInventoryLoadPatch : ModulePatch { /// /// This patch runs both inraid and on main Menu everytime the inventory is loaded diff --git a/project/SPT.Custom/Patches/RagfairFeePatch.cs b/project/SPT.Custom/Patches/SendFleaListingTaxAmountToServerPatch.cs similarity index 93% rename from project/SPT.Custom/Patches/RagfairFeePatch.cs rename to project/SPT.Custom/Patches/SendFleaListingTaxAmountToServerPatch.cs index e06f680..0987ca6 100644 --- a/project/SPT.Custom/Patches/RagfairFeePatch.cs +++ b/project/SPT.Custom/Patches/SendFleaListingTaxAmountToServerPatch.cs @@ -12,9 +12,9 @@ namespace SPT.Custom.Patches /// Send the tax amount for listing an item for sale on flea by player to server for later use when charging player /// Client doesnt send this data and calculating it server-side isn't accurate /// - public class RagfairFeePatch : ModulePatch + public class SendFleaListingTaxAmountToServerPatch : ModulePatch { - public RagfairFeePatch() + public SendFleaListingTaxAmountToServerPatch() { // Remember to update prefix parameter if below lines are broken _ = nameof(RagfairOfferSellHelperClass.IsAllSelectedItemSame); diff --git a/project/SPT.Custom/SPTCustomPlugin.cs b/project/SPT.Custom/SPTCustomPlugin.cs index d09b79c..68c5d6c 100644 --- a/project/SPT.Custom/SPTCustomPlugin.cs +++ b/project/SPT.Custom/SPTCustomPlugin.cs @@ -33,10 +33,10 @@ namespace SPT.Custom new PmcTakesAgesToHealLimbsPatch().Enable(); new SaveSettingsToSptFolderPatch().Enable(); //new SetLocationIdOnRaidStartPatch().Enable(); - new RagfairFeePatch().Enable(); - new ScavQuestPatch().Enable(); - new ScavItemCheckmarkPatch().Enable(); - new HalloweenExtractPatch().Enable(); + new SendFleaListingTaxAmountToServerPatch().Enable(); + new CopyPmcQuestsToPlayerScavPatch().Enable(); + new MergeScavPmcQuestsOnInventoryLoadPatch().Enable(); + new DisableNonHalloweenExitsDuringEventPatch().Enable(); // Needed but needs editing new IsEnemyPatch().Enable();