Skip to content

Commit

Permalink
Updated the spawn-extension url to point at the community repo
Browse files Browse the repository at this point in the history
  • Loading branch information
CCraigen committed Nov 21, 2023
1 parent fd092a3 commit 355919b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions GameMod/MPSpawnExtension.cs
Expand Up @@ -14,7 +14,7 @@ namespace GameMod
{
public static class MPSpawnExtension
{
const string BASE_URL = "https://raw.githubusercontent.com/CCraigen/ol-map-revisions/main/spawnpoints/";
const string BASE_URL = "https://raw.githubusercontent.com/overload-development-community/ol-map-revisions/main/spawnpoints/";

public static List<LevelData.SpawnPoint> spawnpoints = new List<LevelData.SpawnPoint>();
public static bool DownloadBusy = false;
Expand Down Expand Up @@ -84,7 +84,7 @@ public static IEnumerator LoadSpawnpointFile(string name)
}
catch (Exception e)
{
Debug.LogError("ERROR: Unable to parse additional player spawns, continuing with originals (error message: " + e.Message + ")");
Debug.LogError("WARNING: Unable to parse additional player spawns, continuing with originals (error message: " + e.Message + ")");
spawnpoints.Clear();
}
}
Expand Down

0 comments on commit 355919b

Please sign in to comment.