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; }