diff --git a/Assets/Scripts/KerstSpecial/RaceController.cs b/Assets/Scripts/KerstSpecial/RaceController.cs index 1dedd18d..5c19c9a6 100644 --- a/Assets/Scripts/KerstSpecial/RaceController.cs +++ b/Assets/Scripts/KerstSpecial/RaceController.cs @@ -369,11 +369,11 @@ private void GetCoordinatesForRoute() if (routeFile != null) { routeCoords = ExtractLatLon(routeFile.text); - foreach(Vector2 c in routeCoords) - { - Coordinate nextCoord = new Coordinate(CoordinateSystem.WGS84, c.x, c.y, 0); - SpawnCheckpoint(nextCoord); - } + //foreach(Vector2 c in routeCoords) + //{ + // Coordinate nextCoord = new Coordinate(CoordinateSystem.WGS84, c.x, c.y, 0); + // SpawnCheckpoint(nextCoord); + //} } else