private void MovePlayerToCallback(TilePath path, bool pathNull)
    {
        if (path.Count >= 2)
        {
            path.RemoveAt(path.Count - 1);
        }

        CurrentlyWalkingToPlace.Value = true;
        Player.Reference.MovePlayer(path, PlayerFinishMovingCallback);
    }