From 65e1ffc993daf0e1cbf4cf46670cd319e642014f Mon Sep 17 00:00:00 2001 From: Slendy Date: Tue, 28 Mar 2023 11:18:24 -0500 Subject: [PATCH] Fix photo dates in-game --- ProjectLighthouse/Types/Serialization/GamePhoto.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ProjectLighthouse/Types/Serialization/GamePhoto.cs b/ProjectLighthouse/Types/Serialization/GamePhoto.cs index 4da3f6b6..a53187fd 100644 --- a/ProjectLighthouse/Types/Serialization/GamePhoto.cs +++ b/ProjectLighthouse/Types/Serialization/GamePhoto.cs @@ -96,7 +96,8 @@ public class GamePhoto : ILbpSerializable, INeedsPreparationForSerialization { SlotId = entity.SlotId.GetValueOrDefault(), }, - Timestamp = entity.Timestamp, + // Timestamps are uploaded and stored in seconds but game expects milliseconds + Timestamp = entity.Timestamp * 1000, SmallHash = entity.SmallHash, MediumHash = entity.MediumHash, LargeHash = entity.MediumHash,