0
0
mirror of https://github.com/sp-tarkov/modules.git synced 2025-02-13 09:10:44 -05:00

Disabled DisablePMCExtractsForScavsPatch

This commit is contained in:
Dev 2024-09-24 13:40:34 +01:00
parent 6d03395729
commit aa69354ab3
2 changed files with 2 additions and 1 deletions

View File

@ -41,6 +41,7 @@ namespace SPT.SinglePlayer.Patches.ScavMode
// We are checking if player exists in list so we dont disable the wrong extract // We are checking if player exists in list so we dont disable the wrong extract
if(!scavExfil.EligibleIds.Contains(player.ProfileId)) if(!scavExfil.EligibleIds.Contains(player.ProfileId))
{ {
Logger.LogError($"Disabled exfil: {exfil.name}");
exfil.Disable(); exfil.Disable();
} }
} }

View File

@ -30,7 +30,7 @@ namespace SPT.SinglePlayer
// Still need // Still need
new ScavExperienceGainPatch().Enable(); new ScavExperienceGainPatch().Enable();
new DisablePMCExtractsForScavsPatch().Enable(); //new DisablePMCExtractsForScavsPatch().Enable(); // Scav spawns work without this, tested on factory
new ScavExfilPatch().Enable(); new ScavExfilPatch().Enable();
new ScavProfileLoadPatch().Enable(); new ScavProfileLoadPatch().Enable();
new ScavPrefabLoadPatch().Enable(); new ScavPrefabLoadPatch().Enable();