diff --git a/project/Aki.SinglePlayer/Patches/ScavMode/ScavLateStartPatch.cs b/project/Aki.SinglePlayer/Patches/ScavMode/ScavLateStartPatch.cs index 17082e0..cb6920b 100644 --- a/project/Aki.SinglePlayer/Patches/ScavMode/ScavLateStartPatch.cs +++ b/project/Aki.SinglePlayer/Patches/ScavMode/ScavLateStartPatch.cs @@ -65,11 +65,14 @@ namespace Aki.SinglePlayer.Patches.ScavMode ____raidSettings.SelectedLocation.EscapeTimeLimit = serverResult.RaidTimeMinutes; // Handle survival time changes - AdjustSurviveTimeForExtraction(serverResult.OriginalSurvivalTimeSeconds); if (serverResult.NewSurviveTimeSeconds.HasValue) { AdjustSurviveTimeForExtraction(serverResult.NewSurviveTimeSeconds.Value); } + else + { + AdjustSurviveTimeForExtraction(serverResult.OriginalSurvivalTimeSeconds); + } // Handle exit changes ResetMapExits(____raidSettings.SelectedLocation, originalLocationSettings[currentMapId]);