From 3e4b87a2ac59c52b5f438d9f3bb3bfaa1847196d Mon Sep 17 00:00:00 2001 From: hulkhan22 Date: Sun, 27 Apr 2025 18:59:38 +0200 Subject: [PATCH] Fix hideout upgrade complete time calculation --- Libraries/SPTarkov.Server.Core/Controllers/HideoutController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Libraries/SPTarkov.Server.Core/Controllers/HideoutController.cs b/Libraries/SPTarkov.Server.Core/Controllers/HideoutController.cs index 20acdcdd..8c79e011 100644 --- a/Libraries/SPTarkov.Server.Core/Controllers/HideoutController.cs +++ b/Libraries/SPTarkov.Server.Core/Controllers/HideoutController.cs @@ -140,7 +140,7 @@ public class HideoutController( var timestamp = _timeUtil.GetTimeStamp(); - profileHideoutArea.CompleteTime = (int) Math.Round(timestamp - ctime.Value); + profileHideoutArea.CompleteTime = (int) Math.Round(timestamp + ctime.Value); profileHideoutArea.Constructing = true; } }