From 213e61022e3cffdbcc375754da2b2fb3c507feee Mon Sep 17 00:00:00 2001 From: CWX Date: Mon, 7 Apr 2025 14:15:12 +0100 Subject: [PATCH] should fix null ref on Getting Exit adjustments --- .../SPTarkov.Server.Core/Services/RaidTimeAdjustmentService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Libraries/SPTarkov.Server.Core/Services/RaidTimeAdjustmentService.cs b/Libraries/SPTarkov.Server.Core/Services/RaidTimeAdjustmentService.cs index 113ff3a1..9b4239a7 100644 --- a/Libraries/SPTarkov.Server.Core/Services/RaidTimeAdjustmentService.cs +++ b/Libraries/SPTarkov.Server.Core/Services/RaidTimeAdjustmentService.cs @@ -304,6 +304,6 @@ public class RaidTimeAdjustmentService( result.Add(exitChange); } - return result.Count > 0 ? result : null; + return result; } }