0
0
mirror of https://github.com/sp-tarkov/modules.git synced 2025-02-13 01:30:45 -05:00

2 patches still required

This commit is contained in:
CWX 2024-08-24 12:09:16 +01:00
parent 7901310094
commit 815d6a6303
2 changed files with 3 additions and 4 deletions

View File

@ -26,7 +26,6 @@ namespace SPT.Custom.Patches
List<ExfiltrationPoint> EligiblePoints = ExfiltrationControllerClass.Instance.EligiblePoints(gameWorld.MainPlayer.Profile).ToList();
List<ExfiltrationPoint> PointsToPickFrom = new List<ExfiltrationPoint>();
foreach (var ExfilPoint in EligiblePoints)
{
if (ExfilPoint.Status == EExfiltrationStatus.RegularMode)

View File

@ -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<MenuNotificationManager>();
}