From a8d05f8d3f33e0bd1d7914cc13c31a3fe93c067e Mon Sep 17 00:00:00 2001 From: Ivan Martell Date: Fri, 24 Jan 2025 22:11:05 +0900 Subject: [PATCH] gamePlayed Field added to replays --- LittleWarGameClient/js/lwg.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/LittleWarGameClient/js/lwg.js b/LittleWarGameClient/js/lwg.js index 9f515c7..734f9f0 100644 --- a/LittleWarGameClient/js/lwg.js +++ b/LittleWarGameClient/js/lwg.js @@ -24060,8 +24060,10 @@ Game.prototype.getReplayFile = function() { } // build and return stringified replay object + const currentUTC = new Date().toISOString(); return JSON.stringify({ map: this.name, + gamePlayed: currentUTC, mapVersion: this.data.timestamp, gameVersion: GAME_VERSION, players: p,