From 815d6a630388b870e6229d100a29c9e5ce0e8553 Mon Sep 17 00:00:00 2001 From: CWX Date: Sat, 24 Aug 2024 12:09:16 +0100 Subject: [PATCH] 2 patches still required --- .../Patches/DisableNonHalloweenExitsDuringEventPatch.cs | 1 - project/SPT.Custom/SPTCustomPlugin.cs | 6 +++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/project/SPT.Custom/Patches/DisableNonHalloweenExitsDuringEventPatch.cs b/project/SPT.Custom/Patches/DisableNonHalloweenExitsDuringEventPatch.cs index ae2a2ab..bde9ac9 100644 --- a/project/SPT.Custom/Patches/DisableNonHalloweenExitsDuringEventPatch.cs +++ b/project/SPT.Custom/Patches/DisableNonHalloweenExitsDuringEventPatch.cs @@ -26,7 +26,6 @@ namespace SPT.Custom.Patches List EligiblePoints = ExfiltrationControllerClass.Instance.EligiblePoints(gameWorld.MainPlayer.Profile).ToList(); List PointsToPickFrom = new List(); - foreach (var ExfilPoint in EligiblePoints) { if (ExfilPoint.Status == EExfiltrationStatus.RegularMode) diff --git a/project/SPT.Custom/SPTCustomPlugin.cs b/project/SPT.Custom/SPTCustomPlugin.cs index 82c1851..ded215f 100644 --- a/project/SPT.Custom/SPTCustomPlugin.cs +++ b/project/SPT.Custom/SPTCustomPlugin.cs @@ -24,13 +24,11 @@ namespace SPT.Custom // TODO: check if these patches are needed new DisableNonHalloweenExitsDuringEventPatch().Enable(); // new AllScavsHostileHostileToPlayerScavPatch().Enable(); - // new CopyPmcQuestsToPlayerScavPatch().Enable(); - // new MergeScavPmcQuestsOnInventoryLoadPatch().Enable(); + //new IsEnemyPatch().Enable(); // TODO: can probably remove, this is handled by server data sent to client on raid start // Still need new SendFleaListingTaxAmountToServerPatch().Enable(); new AddTraitorScavsPatch().Enable(); - //new IsEnemyPatch().Enable(); // TODO: can probably remove, this is handled by server data sent to client on raid start new CustomAiPatch().Enable(); new SaveSettingsToSptFolderPatch().Enable(); new QTEPatch().Enable(); @@ -43,6 +41,8 @@ namespace SPT.Custom new BossSpawnChancePatch().Enable(); new VersionLabelPatch().Enable(); new FixBotgroupMarkofTheUnknown().Enable(); + new MergeScavPmcQuestsOnInventoryLoadPatch().Enable(); + new CopyPmcQuestsToPlayerScavPatch().Enable(); HookObject.AddOrGetComponent(); }