Fix hideout upgrade complete time calculation

This commit is contained in:
hulkhan22
2025-04-27 18:59:38 +02:00
parent d7e67af662
commit 3e4b87a2ac
@@ -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;
}
}