From 591dd263724f33cb6f845dbe79b65ec307c815b7 Mon Sep 17 00:00:00 2001 From: Evgenij Titarenko Date: Sat, 19 Aug 2023 19:28:47 +0300 Subject: [PATCH] =?UTF-8?q?=D0=92=D0=BE=D0=B7=D0=BC=D0=BE=D0=B6=D0=BD?= =?UTF-8?q?=D0=BE=D0=B5=20=D0=B8=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=BB=D0=B5?= =?UTF-8?q?=D0=BD=D0=B8=D1=8F=20=D0=BF=D0=BE=D0=B4=D1=81=D1=87=D0=B5=D1=82?= =?UTF-8?q?=D0=B0=20=D0=B2=D1=80=D0=B5=D0=BC=D0=B5=D0=BD=D0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scripts/GameManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/GameManager.cs b/scripts/GameManager.cs index de5ab02..09e069c 100644 --- a/scripts/GameManager.cs +++ b/scripts/GameManager.cs @@ -39,6 +39,7 @@ public partial class GameManager : Node GD.Print("Restart stats"); IsPlaying = true; _gameInfo = new GameInfo(GetPathTo(FirstZone.PlayerSpawnPoint)); + _gameInfo.GameStart = Time.GetTicksMsec(); } StartGame(); @@ -46,7 +47,6 @@ public partial class GameManager : Node public void StartGame() { - _gameInfo.GameStart = Time.GetTicksMsec(); Player.GlobalPosition = GetNode(_gameInfo.Checkpoint).GlobalPosition; }